{"info":{"_postman_id":"9e83af00-bcc3-4c30-b5c1-e8a791d4e6d8","name":"Wise for Connected Apps API","description":"<html><head></head><body><p>This collection describes the required endpoints for a successful bank partner's integration of the send money API product.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"12156495","collectionId":"9e83af00-bcc3-4c30-b5c1-e8a791d4e6d8","publishedId":"UV5XiHS4","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-10-19T14:08:39.000Z"},"item":[{"name":"1. Acquire user tokens","item":[{"name":"1. Redirect user to Authorization Page","item":[],"id":"77109a7f-d80c-4c95-b1e7-4cfa016abbaf","description":"<p>You will need to redirect the customer to Wise in order to finalize the account setup by confirming that the data submitted by the Onboarding API is accurate, and filling in any missing data where applicable.</p>\n<p>Sandbox:  </p>\n<p><code>https://sandbox.transferwise.tech/oauth/authorize/?client_id={clientId}&amp;redirect_uri={redirectUri}&amp;state={state}&amp;claim_account_code={claim_account_code}</code></p>\n<p>Live:  </p>\n<p><code>https://wise.com/oauth/authorize/?client_id={clientId}&amp;redirect_uri={redirectUri}&amp;state={state}&amp;claim_account_code={claim_account_code}</code></p>\n<p>List of available 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>client_id (required)</td>\n<td>The client ID you received from us.</td>\n</tr>\n<tr>\n<td>redirect_uri (required)</td>\n<td>The preconfigured URL in your application where users will be sent after authorization.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>An opaque value, used for security purposes. If this parameter is set in the request, then it is returned to the application as part of the redirect URL. <a href=\"https://auth0.com/docs/protocols/oauth2/oauth-state\">More about state parameter</a>.</td>\n</tr>\n<tr>\n<td>claim_account_code (required)</td>\n<td>Short lived security code generated at Step 3. This helps us identify who the connecting user.</td>\n</tr>\n</tbody>\n</table>\n</div><p>On Wise, there are a couple of steps that need to be completed for the journey to complete:</p>\n<ol>\n<li>Securing the account with a password</li>\n<li>Reviewing data uploaded via the Onboarding API</li>\n<li>Authorize access to the account</li>\n</ol>\n","_postman_id":"77109a7f-d80c-4c95-b1e7-4cfa016abbaf"},{"name":"2. User linking","item":[{"name":"1. Generate token from authorization code","event":[{"listen":"test","script":{"id":"1477a6d9-bd37-448d-b27a-ad6a52774f1e","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.access_token) postman.setEnvironmentVariable(\"token\", jsonData.access_token);","if (jsonData.refresh_token) postman.setEnvironmentVariable(\"refresh\", jsonData.refresh_token);"],"type":"text/javascript"}}],"id":"65d42f84-3c53-44b5-8415-d01a4ad15bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client-id}}"},{"key":"password","value":"{{client-secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"client_id","value":"{{client-id}}","type":"text"},{"key":"redirect_uri","value":"{{client-redirect-uri}}","type":"text"},{"key":"code","value":"<code from redirect url>","type":"text"},{"key":"","value":"","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/oauth/token","description":"<p>This endpoint is used to link an existing TransferWise account to a bank account. It is used as part of the redirection flow that allows the customer to sign into their TransferWise account and authorise the linking of their profile.</p>\n","urlObject":{"path":["oauth","token"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65d42f84-3c53-44b5-8415-d01a4ad15bb7"}],"id":"83b13e43-9df7-4303-997c-0813e10a6b9c","_postman_id":"83b13e43-9df7-4303-997c-0813e10a6b9c","description":""},{"name":"3. Generate new token for returning user","item":[{"name":"1. Generate access token from refresh token","event":[{"listen":"test","script":{"id":"34dd36fd-3660-4afe-894c-da56c3f4edb9","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.access_token) postman.setEnvironmentVariable(\"token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"219eedd3-9750-4d2b-877c-338465985683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client-id}}"},{"key":"password","value":"{{client-secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh}}","type":"text"}]},"url":"{{host}}/oauth/token","description":"<p>This endpoint is used to generate a new access token if the previous one has expired. The refresh token is initially generated when creating a new user or when linking an existing TransferWise account.</p>\n","urlObject":{"path":["oauth","token"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e65994eb-009e-4a36-ab67-dfeeab37ae05","name":"1. Generate access token from refresh token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh}}","type":"text"}]},"url":"{{host}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Sep 2020 10:19:33 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"214"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"x-request-id","value":"535d9301-fd29-9470-a43b-27c8761465bb"},{"key":"x-application-context","value":"identity-service:oauth-clients,one-time-token,staging,kubernetes-customenvs:12345"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-frame-options","value":"DENY"},{"key":"x-newrelic-app-data","value":"PxQGWVBaCwUGR1JTAQMPUFAHBRFORDQHUjZKA1ZLVVFHDFYPbU5kBwZqGA4HFkxbbEsVDVxUWUZMYXlgNk9BTgBMCE4IFgQKB1cLVQRZH1VRGhVXUAVcBghUU1oEBA9RAFUBEU4AAg5DB2U="},{"key":"vary","value":"Accept-Encoding"},{"key":"x-envoy-upstream-service-time","value":"91"},{"key":"x-envoy-attempt-count","value":"1"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{access_token}\",\n    \"token_type\": \"bearer\",\n    \"refresh_token\": \"{refresh_token}\",\n    \"expires_in\": 43199,\n    \"scope\": \"transfers\",\n    \"created_at\": \"2020-09-16T10:19:33.145563Z\"\n}"}],"_postman_id":"219eedd3-9750-4d2b-877c-338465985683"}],"id":"d4bfecae-6eec-4200-9302-537896f36913","description":"<p>After previosuly completing 1a or 1b you will have a refresh token stored, use this to generate new access tokens</p>\n","_postman_id":"d4bfecae-6eec-4200-9302-537896f36913"}],"id":"b8750363-e681-4be4-88eb-14096d00f4c9","event":[{"listen":"prerequest","script":{"id":"ca67c6d9-ed22-457a-a7a9-7affd4a53506","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bcd45edf-2f8b-47c0-8def-dab3fd1dcede","type":"text/javascript","exec":[""]}}],"_postman_id":"b8750363-e681-4be4-88eb-14096d00f4c9","description":""},{"name":"2. Transfer Flow","item":[{"name":"1. Fetch user profiles","item":[{"name":"1. Get profile list","event":[{"listen":"test","script":{"id":"76d8e7f8-2df8-4c01-a781-e069b64b8dd6","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData[0].id) postman.setEnvironmentVariable(\"personal-profile-id\", jsonData[0].id);","if (jsonData[1].id) postman.setEnvironmentVariable(\"business-profile-id\", jsonData[1].id);"],"type":"text/javascript"}}],"id":"f534ef42-a711-4b6b-abe7-b85acf42607d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/profiles","urlObject":{"path":["v1","profiles"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c5e1d4fa-5433-4db9-bf50-f9b52ecafc91","name":"1. Get profile list - no profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Sep 2020 09:00:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"x-request-id","value":"8c476e41-59f7-90be-8b58-d97267d7faa3"},{"key":"vary","value":"accept-encoding,origin,access-control-request-headers,access-control-request-method"},{"key":"x-frame-options","value":"DENY"},{"key":"expires","value":"0"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"x-envoy-upstream-service-time","value":"78"},{"key":"x-envoy-attempt-count","value":"1"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f534ef42-a711-4b6b-abe7-b85acf42607d"}],"id":"f366df83-c4b7-43bd-9145-f2c9d12c28ec","_postman_id":"f366df83-c4b7-43bd-9145-f2c9d12c28ec","description":""},{"name":"2. Create quote","item":[{"name":"1. Create Anonymous Quote","event":[{"listen":"test","script":{"id":"052c5c80-aa10-42e2-b857-92f1e6f83eb1","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.id) postman.setEnvironmentVariable(\"new-quote-id\", jsonData.id);"],"type":"text/javascript"}}],"id":"195434e6-3f90-4757-9d27-dceed5bd577b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sourceCurrency\": \"GBP\",\n\t\"targetCurrency\": \"USD\",\n\t\"sourceAmount\": 100,\n\t\"targetAmount\": null\n}"},"url":"{{host}}/v2/quotes","urlObject":{"path":["v2","quotes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"195434e6-3f90-4757-9d27-dceed5bd577b"},{"name":"2. Create Quote","event":[{"listen":"test","script":{"id":"ee972b41-8cfa-4047-b265-a2cab7dd7169","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.id) postman.setEnvironmentVariable(\"new-quote-id\", jsonData.id);"],"type":"text/javascript"}}],"id":"afbfc8de-8dd7-405a-a0cd-58a80e252d52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sourceCurrency\": \"GBP\",\n\t\"targetCurrency\": \"USD\",\n\t\"sourceAmount\": 100,\n\t\"targetAmount\": null,\n\t\"profile\": <owning profile id>\n}"},"url":"{{host}}/v2/quotes","urlObject":{"path":["v2","quotes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"afbfc8de-8dd7-405a-a0cd-58a80e252d52"}],"id":"d75cd5e3-ebe3-4fdb-886d-d0c7cffd9bc1","event":[{"listen":"prerequest","script":{"id":"5994684d-a7c2-4d76-bce0-32350bbfcaa8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"827ccc67-8083-48ff-b2da-e2eec4fd362d","type":"text/javascript","exec":[""]}}],"_postman_id":"d75cd5e3-ebe3-4fdb-886d-d0c7cffd9bc1","description":""},{"name":"3. Choose/create recipient","item":[{"name":"3a. Select Existing","item":[{"name":"1. Load accounts","id":"ecce67ec-c238-429b-a809-25ce91cf5360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v2/accounts/?currency=USD","urlObject":{"path":["v2","accounts",""],"host":["{{host}}"],"query":[{"key":"currency","value":"USD"}],"variable":[]}},"response":[],"_postman_id":"ecce67ec-c238-429b-a809-25ce91cf5360"}],"id":"50ec2014-64ff-4bbd-82c0-5afb74b965bc","event":[{"listen":"prerequest","script":{"id":"f8426115-4d74-4b80-beb4-c81176aa5090","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48ba9ce2-ca76-4339-8a8d-e08a50bac7c9","type":"text/javascript","exec":[""]}}],"_postman_id":"50ec2014-64ff-4bbd-82c0-5afb74b965bc","description":""},{"name":"3b. Create new recipient account","item":[{"name":"1. Get recipient creation dynamic form","id":"0c2e1843-fbfb-447a-8627-ce0f044b9299","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept-Minor-Version","value":"1","type":"text"}],"url":"{{host}}/v1/quotes/{{new-quote-id}}/account-requirements","urlObject":{"path":["v1","quotes","{{new-quote-id}}","account-requirements"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c2e1843-fbfb-447a-8627-ce0f044b9299"},{"name":"2. Update form if any field require refresh","id":"0cc536fb-9ebf-4b21-88ce-799d1d88de5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aba\",\n    \"details\": {\n        \"legalType\": \"PRIVATE\",\n        \"address\": {\n            \"country\": \"US\"\n        }\n    }\n}"},"url":"{{host}}/v1/quotes/{{new-quote-id}}/account-requirements","description":"<p>POST /account-requirements</p>\n","urlObject":{"path":["v1","quotes","{{new-quote-id}}","account-requirements"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0cc536fb-9ebf-4b21-88ce-799d1d88de5c"},{"name":"3. Create account","event":[{"listen":"test","script":{"id":"6d653c38-2332-4abf-a2c5-0111aeacc5a4","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.id) postman.setEnvironmentVariable(\"new-recipient-id\", jsonData.id);"],"type":"text/javascript"}}],"id":"beb345b7-955f-4c53-a695-863a41037d9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"accountHolderName\": \"Person USD\",\n    \"currency\": \"USD\",\n    \"type\": \"ABA\",\n    \"details\": {\n      \"address\": {\n        \"city\": \"New York\",\n        \"countryCode\": \"US\",\n        \"postCode\": \"10025\",\n        \"state\": \"NY\",\n        \"firstLine\": \"158 Wall Street\"\n      },\n      \"legalType\":\"PRIVATE\",\n      \"abartn\": \"064000020\",\n      \"accountType\": \"CHECKING\",\n      \"accountNumber\": \"40000000000\",\n      \"email\": \"example@foobar.com\"\n    }\n  }"},"url":"{{host}}/v1/accounts","urlObject":{"path":["v1","accounts"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"beb345b7-955f-4c53-a695-863a41037d9d"},{"name":"4. Get account in v2 format","id":"813b9da1-0f8b-4e33-99c4-39e33d551c60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{host}}/v2/accounts/{{new-recipient-id}}","urlObject":{"path":["v2","accounts","{{new-recipient-id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"813b9da1-0f8b-4e33-99c4-39e33d551c60"}],"id":"e86bb745-b90b-45aa-9d6b-969b873c7605","event":[{"listen":"prerequest","script":{"id":"6119b928-8273-4971-b850-38f2f63bcb5b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a71c0e5b-58b8-48e9-a04b-dfcec220237d","type":"text/javascript","exec":[""]}}],"_postman_id":"e86bb745-b90b-45aa-9d6b-969b873c7605","description":""}],"id":"6e3d3459-4693-4077-ae3c-0fda857a1075","event":[{"listen":"prerequest","script":{"id":"9f627b1f-dac0-49eb-b474-938ee12ad8bf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5cab924b-26a1-4f01-ae97-939921e5056a","type":"text/javascript","exec":[""]}}],"_postman_id":"6e3d3459-4693-4077-ae3c-0fda857a1075","description":""},{"name":"4. Create transfer","item":[{"name":"1. Update quote with selected recipient","id":"82742b7f-5e0e-4093-a9f8-0df5988383c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/merge-patch+json"}],"body":{"mode":"raw","raw":"{\n    \"targetAccount\": {{new-recipient-id}}\n}"},"url":"{{host}}/v2/quotes/{{new-quote-id}}","description":"<p>Set the recipient the user wishes to send to on the quote to get an updated price and delivery estimte.</p>\n<p>ENSURE <code>Content-Type</code> IS <code>application/merge-patch+json</code> ELSE THIS WILL FAIL</p>\n","urlObject":{"path":["v2","quotes","{{new-quote-id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"82742b7f-5e0e-4093-a9f8-0df5988383c8"},{"name":"2. Get transfer extra info dynamic form","id":"d675c930-b59a-4c30-9ff1-301b2d930acb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"targetAccount\": {{new-recipient-id}},\n    \"quoteUuid\": \"{{new-quote-id}}\"\n}"},"url":"{{host}}/v1/transfer-requirements","urlObject":{"path":["v1","transfer-requirements"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d675c930-b59a-4c30-9ff1-301b2d930acb"},{"name":"3. Update transfer extra info dynamic form (if any fields require refresh)","id":"d9e76424-2ca1-4711-9fdf-3daf1eb081a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \n\t\"targetAccount\": {{new-recipient-id}},\n    \"quoteUuid\": \"{{new-quote-id}}\",\n    \"details\": {\n        \"reference\": \"my ref\",\n    \t\"sourceOfFunds\": \"verification.source.of.funds.other\"\n    }\n}"},"url":"{{host}}/v1/transfer-requirements","urlObject":{"path":["v1","transfer-requirements"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9e76424-2ca1-4711-9fdf-3daf1eb081a5"},{"name":"2. Generate GUID for idempotency","event":[{"listen":"test","script":{"id":"37073eb2-56e9-4e0b-8aa2-021b52416e33","exec":["if (responseBody) postman.setEnvironmentVariable(\"idempotency-guid\", responseBody);"],"type":"text/javascript"}}],"id":"d2cdde7f-884e-4f90-94cb-0c28ceeb8754","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://www.uuidgenerator.net/api/guid","description":"<p>You don't have to use an API for this - you can almost certainly do it in code. This is just for testing convenience.</p>\n","urlObject":{"protocol":"https","path":["api","guid"],"host":["www","uuidgenerator","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2cdde7f-884e-4f90-94cb-0c28ceeb8754"},{"name":"5. Create transfer","event":[{"listen":"test","script":{"id":"398ebcfc-fd16-4119-a25d-907891de01d9","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.id) postman.setEnvironmentVariable(\"new-transfer-id\", jsonData.id);"],"type":"text/javascript"}}],"id":"0a42bd13-9df3-45d8-85ba-a5ec7e7cab9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"targetAccount\": {{new-recipient-id}},\n    \"quoteUuid\": \"{{new-quote-id}}\",\n    \"customerTransactionId\": \"<idempotency guid>\",\n    \"details\": {\n        \"reference\": \"my ref\",\n        \"transferPurpose\": \"verification.transfers.purpose.pay.bills\"\n    }\n}"},"url":"{{host}}/v1/transfers","description":"<p>A transfer is a payment order to recipient account based on a quote. Once created, a transfer needs to be funded within the next five working days. Otherwise, it will be automatically canceled.</p>\n","urlObject":{"path":["v1","transfers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a42bd13-9df3-45d8-85ba-a5ec7e7cab9f"}],"id":"e4d9b46b-b248-4961-871d-811b1e1a2087","event":[{"listen":"prerequest","script":{"id":"720244cd-2b45-4edb-a7d0-584832f3f629","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b17adfc9-94cf-401d-964a-836ce33945bd","type":"text/javascript","exec":[""]}}],"_postman_id":"e4d9b46b-b248-4961-871d-811b1e1a2087","description":""}],"id":"3c493916-129b-476f-bab7-5794f85a1c24","_postman_id":"3c493916-129b-476f-bab7-5794f85a1c24","description":""},{"name":"3. Fund transfer","item":[{"name":"4a. Get payin deposit details","item":[{"name":"1. Get payin deposit details","id":"ce4079cf-fee9-4a59-89c6-60b66d4af983","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/profiles/{profileId}/transfers/{{new-transfer-id}}/deposit-details/bank-transfer","urlObject":{"path":["v1","profiles","{profileId}","transfers","{{new-transfer-id}}","deposit-details","bank-transfer"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce4079cf-fee9-4a59-89c6-60b66d4af983"}],"id":"59de6cf9-4cf0-4e1d-a317-e459a0bd9652","_postman_id":"59de6cf9-4cf0-4e1d-a317-e459a0bd9652","description":""},{"name":"4.b Fund trnsfer from Wise balance","item":[{"name":"1. Fund transfer","id":"3e11554f-ec80-4bb6-8df8-49d7db882c7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{   \n    \"type\":\"BALANCE\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/v3/profiles/<profile-on-behalf-of-which-transfer-was-created>/transfers/{{new-transfer-id}}/payments","description":"<p>The only way to fund your transfers via API is to fund them from balance.\nNote that based on the user origin this call might be the subject for SCA, more details in <a href=\"https://api-docs.wise.com/#strong-customer-authentication\">API Documentation</a></p>\n","urlObject":{"path":["v3","profiles","<profile-on-behalf-of-which-transfer-was-created>","transfers","{{new-transfer-id}}","payments"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6aa83b48-1705-4b5b-9b25-806852e131b9","name":"1. Fund transfer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{   \n    \"type\":\"BALANCE\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/v3/profiles/{{personal-profile-id}}/transfers/{{new-transfer-id}}/payments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Oct 2021 15:10:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"107"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"x-request-id","value":"45595d88b423e3df71e3f86917335067"},{"key":"x-trace-id","value":"db7e63866499b99f"},{"key":"x-2fa-approval-result","value":"APPROVED"},{"key":"x-frame-options","value":"DENY"},{"key":"expires","value":"0"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-envoy-upstream-service-time","value":"330"},{"key":"x-envoy-attempt-count","value":"1"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers,accept-encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"BALANCE\",\n    \"status\": \"COMPLETED\",\n    \"errorCode\": null,\n    \"errorMessage\": null,\n    \"balanceTransactionId\": 2218118\n}"}],"_postman_id":"3e11554f-ec80-4bb6-8df8-49d7db882c7b"}],"id":"a443a6b6-c47c-4dcf-bd66-16131a8efbad","_postman_id":"a443a6b6-c47c-4dcf-bd66-16131a8efbad","description":""}],"id":"c312509f-db4c-42e4-b0ba-75260748edc2","_postman_id":"c312509f-db4c-42e4-b0ba-75260748edc2","description":""},{"name":"4. Get updated transfer status","item":[{"name":"1. Get transfer status","id":"fda07379-dd56-49ec-b2bc-f248a0bea64e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/transfers/{{new-transfer-id}}","urlObject":{"path":["v1","transfers","{{new-transfer-id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fda07379-dd56-49ec-b2bc-f248a0bea64e"},{"name":"2. Get updated delivery esitmation","id":"4d6f1d2d-6c26-43df-8e83-0ef1fadf4256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/v1/delivery-estimates/{{new-transfer-id}}","urlObject":{"path":["v1","delivery-estimates","{{new-transfer-id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d6f1d2d-6c26-43df-8e83-0ef1fadf4256"}],"id":"d5ac66e7-f207-4780-beef-adf13232459f","_postman_id":"d5ac66e7-f207-4780-beef-adf13232459f","description":""},{"name":"5. Webhooks subscription","item":[{"name":"1. Client Credentials Token","event":[{"listen":"test","script":{"id":"b10b29a1-b478-4f5a-a77c-d422d37fef14","exec":["var jsonData = JSON.parse(responseBody);","if (jsonData.access_token) postman.setEnvironmentVariable(\"client-credentials-token\", jsonData.access_token);",""],"type":"text/javascript"}}],"id":"dc42043b-7fab-45d2-ac40-fa8371859731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client-id}}"},{"key":"password","value":"{{client-secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"}]},"url":"{{host}}/oauth/token","description":"<p>Get a client credentials token to use to create a user</p>\n","urlObject":{"path":["oauth","token"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc42043b-7fab-45d2-ac40-fa8371859731"},{"name":"2. Create transfer state change webhook subscription","id":"1644627e-d86a-4d3a-a6be-cb30203a261c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{client-credentials-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Webhook Subscription #1\",\n    \"trigger_on\": \"transfers#state-change\",\n    \"delivery\": {\n       \"version\": \"2.0.0\",\n       \"url\": \"<your webhook URL>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/v3/applications/{{client-id}}/subscriptions/","description":"<p>Subscribe application for transfer status change events</p>\n","urlObject":{"path":["v3","applications","{{client-id}}","subscriptions",""],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1644627e-d86a-4d3a-a6be-cb30203a261c"},{"name":"3. List application webhook subscriptions","event":[{"listen":"test","script":{"id":"512d9cd7-1465-4255-be65-2bd94693729b","exec":["var jsonData = JSON.parse(responseBody);","tests['There are two subscriptions availabale'] = (jsonData.length == 2)"],"type":"text/javascript"}}],"id":"cb5a246c-e918-4c1a-beb8-5a8c7e7a2a58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/v3/applications/{{client-id}}/subscriptions","urlObject":{"path":["v3","applications","{{client-id}}","subscriptions"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb5a246c-e918-4c1a-beb8-5a8c7e7a2a58"},{"name":"4. Get aplication webhook subscription by ID","event":[{"listen":"test","script":{"id":"1e8df327-4117-4200-9a66-377486b6824f","exec":[""],"type":"text/javascript"}}],"id":"50e25a39-b62d-491f-81da-6da27dac011e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/v3/applications/{{client-id}}/subscriptions/{{webhook-subscription-id}}","urlObject":{"path":["v3","applications","{{client-id}}","subscriptions","{{webhook-subscription-id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50e25a39-b62d-491f-81da-6da27dac011e"},{"name":"5. Delete application webhook subscription","event":[{"listen":"test","script":{"id":"2be75577-d65d-4c35-b723-9c5433f5e01d","exec":["",""],"type":"text/javascript"}}],"id":"7e8cc6c4-43cb-4638-a98a-611610287d94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/v3/applications/{{client-id}}/subscriptions/{{webhook-subscription-id}}","urlObject":{"path":["v3","applications","{{client-id}}","subscriptions","{{webhook-subscription-id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e8cc6c4-43cb-4638-a98a-611610287d94"}],"id":"237d91c0-5638-48e5-9f80-c6a3f6bacb74","_postman_id":"237d91c0-5638-48e5-9f80-c6a3f6bacb74","description":""},{"name":"6. Transfer state simulation","item":[{"name":"1. Set as processing","id":"992b0dea-4ce9-4d70-9858-ac9bc45e966d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v1/simulation/transfers/{{new-transfer-id}}/processing","urlObject":{"path":["v1","simulation","transfers","{{new-transfer-id}}","processing"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"992b0dea-4ce9-4d70-9858-ac9bc45e966d"},{"name":"2. Set as funds_converted","id":"2979f1c8-029c-469e-9ca0-2671454d5ec3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v1/simulation/transfers/{{new-transfer-id}}/funds_converted","urlObject":{"path":["v1","simulation","transfers","{{new-transfer-id}}","funds_converted"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2979f1c8-029c-469e-9ca0-2671454d5ec3"},{"name":"3. Set as outgoing_payment_sent","id":"21c20c9c-8fb1-4242-a6a6-012e2c141570","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v1/simulation/transfers/{{new-transfer-id}}/outgoing_payment_sent","urlObject":{"path":["v1","simulation","transfers","{{new-transfer-id}}","outgoing_payment_sent"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21c20c9c-8fb1-4242-a6a6-012e2c141570"},{"name":"4. Set as bounced_back","id":"eb7a4bae-e81b-464e-90ba-3029baf4ca37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v1/simulation/transfers/{{new-transfer-id}}/bounced_back","urlObject":{"path":["v1","simulation","transfers","{{new-transfer-id}}","bounced_back"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb7a4bae-e81b-464e-90ba-3029baf4ca37"},{"name":"5. Set as funds_refunded","id":"c3cc3939-343a-4bbf-9eff-e2af9e5c849a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v1/simulation/transfers/{{new-transfer-id}}/funds_refunded","urlObject":{"path":["v1","simulation","transfers","{{new-transfer-id}}","funds_refunded"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3cc3939-343a-4bbf-9eff-e2af9e5c849a"}],"id":"5cdd9c24-7012-43b6-88cd-937095883392","_postman_id":"5cdd9c24-7012-43b6-88cd-937095883392","description":""},{"name":"7. Get transfer receipt","item":[{"name":"Get reciept PDF","id":"a0aec4a8-3b82-44e2-ad97-84d3fd976de4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/v1/transfers/{{new-transfer-id}}/receipt.pdf","urlObject":{"path":["v1","transfers","{{new-transfer-id}}","receipt.pdf"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0aec4a8-3b82-44e2-ad97-84d3fd976de4"}],"id":"b0f6e158-636d-4881-b8d4-e2ec70f7c26e","_postman_id":"b0f6e158-636d-4881-b8d4-e2ec70f7c26e","description":""},{"name":"8. Comparison","item":[{"name":"Get price comparison","id":"a6a4e8d4-78e5-4d1d-afd7-eddaa7c02250","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transferwise.com/v3/comparisons/?sourceCurrency=GBP&targetCurrency=EUR&sendAmount=10000","description":"<p>API to build a transparent price comparison page based on data collected by TransferWise</p>\n","urlObject":{"protocol":"https","path":["v3","comparisons",""],"host":["api","transferwise","com"],"query":[{"key":"sourceCurrency","value":"GBP"},{"key":"targetCurrency","value":"EUR"},{"key":"sendAmount","value":"10000"},{"disabled":true,"key":"sourceCountry","value":"GB"},{"disabled":true,"key":"targetCountry","value":"DE"},{"disabled":true,"key":"providerType","value":"moneyTransferProvider"}],"variable":[]}},"response":[{"id":"43d9ccfe-cc28-4d08-9dfb-9e37d4a32139","name":"Get price comparison","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transferwise.com/v3/comparisons/?sourceCurrency=GBP&targetCurrency=EUR&sendAmount=10000","protocol":"https","host":["api","transferwise","com"],"path":["v3","comparisons",""],"query":[{"key":"sourceCurrency","value":"GBP","type":"text","description":"ISO 4217 source currency code"},{"key":"targetCurrency","value":"EUR","type":"text","description":"ISO 4217 target currency code"},{"key":"sendAmount","value":"10000","type":"text","description":"Amount in source currency"},{"key":"sourceCountry","value":"","type":"text","description":"(Optional) Filter by source country (ISO 3166-1 Alpha-2 code)","disabled":true},{"key":"targetCountry","value":"","type":"text","description":"(Optional) Filter by target country (ISO 3166-1 Alpha-2 code)","disabled":true},{"key":"providerType","value":"","type":"text","description":"(Optional) Filter by provider type, one of \"bank\",\"moneyTransferProvider\"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Dec 2020 05:49:00 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-request-id","value":"503e4c22-3964-972d-b583-a6cd68410bc5"},{"key":"x-trace-id","value":"e37144cf8f51ff65"},{"key":"vary","value":"accept-encoding,origin,access-control-request-headers,access-control-request-method"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"0"},{"key":"x-frame-options","value":"DENY"},{"key":"x-envoy-upstream-service-time","value":"105"},{"key":"x-envoy-attempt-count","value":"1"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"06c398471e000096cef1078000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5fb2c31e997f96ce-FRA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"sourceCurrency\": \"GBP\",\n    \"targetCurrency\": \"EUR\",\n    \"sourceCountry\": null,\n    \"targetCountry\": null,\n    \"providerCountry\": null,\n    \"providerType\": null,\n    \"sendAmount\": 10000,\n    \"providers\": [\n        {\n            \"id\": 39,\n            \"alias\": \"transferwise\",\n            \"name\": \"TransferWise\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/transferwise.svg\",\n            \"type\": \"moneyTransferProvider\",\n            \"partner\": false,\n            \"quotes\": [\n                {\n                    \"rate\": 1.11123,\n                    \"fee\": 35.14,\n                    \"receivedAmount\": 11073.25,\n                    \"dateCollected\": \"2020-12-02T05:49:00Z\",\n                    \"sourceCountry\": null,\n                    \"targetCountry\": null,\n                    \"markup\": 0,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT9H55M59.30464S\",\n                            \"max\": \"PT9H55M59.30464S\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 94,\n            \"alias\": \"starling-bank\",\n            \"name\": \"Starling Bank\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/starling-bank.svg\",\n            \"type\": \"bank\",\n            \"partner\": false,\n            \"quotes\": [\n                {\n                    \"rate\": 1.11102121,\n                    \"fee\": 40.3,\n                    \"receivedAmount\": 11065.44,\n                    \"dateCollected\": \"2020-12-01T09:19:23Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"DE\",\n                    \"markup\": 0.01878909,\n                    \"deliveryEstimation\": {\n                        \"duration\": null,\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 44,\n            \"alias\": \"monzo\",\n            \"name\": \"Monzo\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/monzo.svg\",\n            \"type\": \"bank\",\n            \"partner\": true,\n            \"quotes\": [\n                {\n                    \"rate\": 1.11123,\n                    \"fee\": 35.14,\n                    \"receivedAmount\": 11073.25,\n                    \"dateCollected\": \"2020-12-02T05:49:00Z\",\n                    \"sourceCountry\": null,\n                    \"targetCountry\": null,\n                    \"markup\": 0,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT9H55M59.30464S\",\n                            \"max\": \"PT9H55M59.30464S\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 4,\n            \"alias\": \"natwest\",\n            \"name\": \"NatWest\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/natwest.svg\",\n            \"type\": \"bank\",\n            \"partner\": false,\n            \"quotes\": [\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"YT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AD\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AX\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"RE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SK\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SM\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SI\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BL\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"CY\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"DE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"TF\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"ME\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MF\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MC\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"EE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LU\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LV\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FI\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"NL\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"VA\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MQ\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": null,\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": null,\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"ES\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GB\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GF\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FR\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PM\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GP\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT48H\",\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:02.421762Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GR\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 5,\n            \"alias\": \"rbs\",\n            \"name\": \"RBS\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/rbs.svg\",\n            \"type\": \"bank\",\n            \"partner\": false,\n            \"quotes\": [\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"RE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"YT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PM\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GR\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GP\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GF\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FR\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FI\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"NL\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"ES\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MQ\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"EE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MC\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MF\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LT\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LU\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LV\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": null,\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": null,\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"DE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"CY\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SI\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SK\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SM\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BE\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.05727792,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10572.78,\n                    \"dateCollected\": \"2020-12-02T05:30:01.893953Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BL\",\n                    \"markup\": 4.8551677,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 31,\n            \"alias\": \"nationwide\",\n            \"name\": \"Nationwide\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/nationwide.svg\",\n            \"type\": \"bank\",\n            \"partner\": false,\n            \"quotes\": [\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IM\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"YT\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IE\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AT\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"RE\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AX\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IT\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IS\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BE\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"JE\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SI\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SK\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BL\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GI\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GP\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": null,\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": null,\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GF\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GG\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GR\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PT\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PM\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MT\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"EE\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"ES\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FI\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"NL\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FR\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SM\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"CY\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LU\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LT\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"DE\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MC\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.0853777,\n                    \"fee\": 20,\n                    \"receivedAmount\": 10832.07,\n                    \"dateCollected\": \"2020-12-02T05:20:00.883134Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MF\",\n                    \"markup\": 2.32645807,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": null,\n                            \"max\": \"PT96H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 1,\n            \"alias\": \"barclays\",\n            \"name\": \"Barclays\",\n            \"logo\": \"https://dq8dwmysp7hk1.cloudfront.net/logos/barclays.svg\",\n            \"type\": \"bank\",\n            \"partner\": false,\n            \"quotes\": [\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"ES\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MT\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"NL\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FI\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LT\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LV\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"LU\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MC\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"MQ\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"EE\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"CY\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"DE\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SI\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SK\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"SM\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IT\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AT\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"RE\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"BE\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"IE\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"YT\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": null,\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": null,\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"AD\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GR\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GP\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PM\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"PT\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"FR\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                },\n                {\n                    \"rate\": 1.08046668,\n                    \"fee\": 0,\n                    \"receivedAmount\": 10804.67,\n                    \"dateCollected\": \"2020-12-02T05:00:05.224456Z\",\n                    \"sourceCountry\": \"GB\",\n                    \"targetCountry\": \"GF\",\n                    \"markup\": 2.76840258,\n                    \"deliveryEstimation\": {\n                        \"duration\": {\n                            \"min\": \"PT24H\",\n                            \"max\": \"PT24H\"\n                        },\n                        \"providerGivesEstimate\": true\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"a6a4e8d4-78e5-4d1d-afd7-eddaa7c02250"}],"id":"c31750f8-0f6c-4631-92e8-30e4082ee41d","event":[{"listen":"prerequest","script":{"id":"164cffd0-a7a7-4783-8071-5e88976bfcd1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1f2f151a-9d3f-4aa3-bf84-949a7cc77793","type":"text/javascript","exec":[""]}}],"_postman_id":"c31750f8-0f6c-4631-92e8-30e4082ee41d","description":""}]}