{
	"info": {
		"_postman_id": "2347abea-1857-42c3-8037-af20ad7a51eb",
		"name": "Core API (New)",
		"description": "The SaaScada Core API is a REST based API that can be connected to in order to leverage SaaScada's core banking services.\n\nThis SaaScada Core API area in Swagger provides Financial Institutions with the required API endpoint information and message schema.\n\nIn order to successfully connect to SaaScada's API, refer to the Knowledge Centre available from the SaaScada Portal.\n\nAll information is provided to you on a confidential basis and shall remain the property of SaaScada Ltd (including ownership rights in all intellectual property). All information is provided \"as is\" and without any implied warranty, representation, condition or otherwise, regarding its accuracy or completeness.\n\nCopyright SaaScada Ltd. Authorised and regulated by the Financial Conduct Authority (Financial Services Register number: 821593). Registered Address: 3rd Floor, 70 Gracechurch St, London EC3V 0HR\n\nContact Support:  \nName: API Support  \nEmail: [support@saascada.com](https://mailto:support@saascada.com)",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "21322003",
		"_collection_link": "https://saascada.postman.co/workspace/SaaScada-Platform-Testing~7737898b-d8fc-40b5-b13d-e4335237438c/collection/21322003-2347abea-1857-42c3-8037-af20ad7a51eb?action=share&source=collection_link&creator=21322003"
	},
	"item": [
		{
			"name": "Setup",
			"item": [
				{
					"name": "Customer Access",
					"item": [
						{
							"name": "Customer Login",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const payload = pm.response.json();",
											"pm.environment.set(\"accessToken\", payload.accessToken);",
											"pm.environment.set(\"refreshToken\", payload.refreshToken);",
											"pm.environment.set(\"userId\", payload.userId);",
											"if (payload.loginId) {",
											"    pm.environment.set(\"loginId\", payload.loginId);",
											"}",
											""
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											"const username = pm.environment.get(\"customerUsername\");",
											"pm.environment.set(\"username\", username);",
											"const password = pm.environment.get(\"customerPassword\");",
											"pm.environment.set(\"password\", password);",
											"pm.environment.set(\"accessToken\", null);",
											"pm.environment.set(\"refreshToken\", null);",
											"pm.environment.set(\"appMedium\", pm.environment.get(\"coreCustomerAccessAppMedium\"));",
											"pm.environment.set(\"digitalSignatureKey\", pm.environment.get(\"coreCustomerAccessDigitalSignatureKey\"));",
											"",
											"// gets clients private RSA key for DigitalSignature creation",
											"var key = pm.environment.get('digitalSignatureKey');",
											"if (typeof key === 'undefined') {",
											"    return;",
											"}",
											"if (!pm.globals.has('forgeJS') || pm.globals.get('forgeJS') === '') {",
											"    pm.sendRequest(\"https://saescada.s3.eu-west-2.amazonaws.com/assets/forge.min.js\", function (err, res) {",
											"        if (err) {",
											"            console.log(err);",
											"        } else {",
											"            pm.globals.set(\"forgeJS\", res.text());",
											"            signature();",
											"        }",
											"    }",
											"    )",
											"} else {",
											"    signature();",
											"}",
											"",
											"function signature() {",
											"    console.log('generate signature');",
											"    const uuid = require('uuid');",
											"    eval(postman.getGlobalVariable(\"forgeJS\"));",
											"    const privateKey = forge.pki.privateKeyFromPem(key);",
											"    const md = forge.md.sha256.create();",
											"",
											"    let data = request.data;",
											"",
											"    console.log('url encoded body');",
											"    // correctly format application/x-www-form-urlencoded raw request body data",
											"    const urlEncodedArray = pm.request.body.urlencoded;",
											"    let rawBody = '';    ",
											"    urlEncodedArray.each((iterator, index) => {",
											"        console.log('url encoded body item:', iterator, index, urlEncodedArray.count());",
											"        let value = iterator.value;",
											"        console.log('val', value);",
											"        value = value.replaceAll('{', '').replaceAll('}', '');",
											"        const envVar = pm.environment.get(value);",
											"        if (envVar) {",
											"            value = envVar;",
											"        }",
											"        console.log('substituted val', value);",
											"        rawBody = `${rawBody}${encodeURIComponent(iterator.key)}=${encodeURIComponent(value)}`;",
											"        if (index + 1 < urlEncodedArray.count()) {",
											"            rawBody = `${rawBody}&`;",
											"        }",
											"",
											"    });",
											"    console.log('raw:', rawBody);",
											"    console.log('calculate signature for this payload', data);",
											"    md.update(rawBody);",
											"    const signature = privateKey.sign(md);",
											"    const signatureString = forge.util.encode64(signature);",
											"    console.log('setting signature header', signatureString);",
											"    pm.globals.set(\"digitalSignature\", signatureString);",
											"    pm.request.headers.add({ key: \"X-Digital-Signature\", value: pm.globals.get(\"digitalSignature\") });",
											"}"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"type": "text",
										"value": "application/x-www-form-urlencoded"
									},
									{
										"key": "X-App-Medium",
										"type": "text",
										"value": "{{appMedium}}"
									}
								],
								"body": {
									"mode": "urlencoded",
									"urlencoded": [
										{
											"key": "grant_type",
											"value": "mfa",
											"type": "text"
										},
										{
											"key": "step",
											"value": "1",
											"type": "text"
										},
										{
											"key": "username",
											"value": "{{username}}",
											"type": "text"
										},
										{
											"key": "password",
											"value": "{{password}}",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{authApiBaseUrl}}/login/password",
									"host": [
										"{{authApiBaseUrl}}"
									],
									"path": [
										"login",
										"password"
									]
								},
								"description": "SaaScada client A uses password followed by fragmented pin to authenticate."
							},
							"response": []
						}
					]
				},
				{
					"name": "Custom",
					"item": [
						{
							"name": "Manual authorization token",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const payload = pm.response.json();",
											"// pm.environment.set(\"accessToken\", 'eyJraWQiOiI5MTU5NmVhN2M0NWY0ZDVmOTU1NDI2NTIwMTgwODk5NCIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJ0aWdhbmEuc2FyaStrcmVpZ2VyQGFsbGljYS5iYW5rIiwiYXVkIjoiQUxMSUNBX0FQSSIsInNjb3BlIjoib3BlbmlkIiwiaXNzIjoiQUxMSUNBX1NDX0dBVEVXQVkiLCJvaWQiOiJBQklYTjVPSjVaQVMyIiwidXNlclR5cGUiOiIiLCJleHAiOjE3MDEwOTIyMjUsImNsaWVudF9pZCI6ImFsbGljYV9iYW5raW5nX3dlYiJ9.IuVR0RndEAMDUp36SL-XadDDpipBvfyT_N5nuISc0vfN9ZmckZm59-EWTjW8d0U1Y-o04U2frE45CKJCLW82nfgwioBkD7qCQ4btUCQX9QX7b6bisqrNrobmEJDA16_X1f-l687SGxdGBw2HnzGKPeOf-sak-qVdYADYfiDaip2gsA1tDVvrPFgXVBf4Tx_slIaeC0sZjHIvUzNInaRKCLWcp7QVU6nZ9t5KFn3LXue53cTX8xAat3CjafgLLS7GvJJen4ySN4gAOOsRC_ODy-W-3EaCWSDYQxDU49KHyyXSVrecWcpSXfhmXhcAW3F4C9NUIGaYf1PHxto8p4kus-zNdRmUBShiyKxBz8nooWCJ1XwPLVdXLw-BqWdslrIHLVLLSdTnYaEWaq4jvMeZtDUsDz_EYjAQaoHECjnmLkLVqXePmHpS_DkHafotZBJTbEEslTjMXVm-teR459PhLswNZk9Nldd2A8lI-UH78_oJizXyo1Z6LTuEY_O7_Dbmf5wTusYUG_oNU7USlfaQHkSa5Pi1Wc5mVloq4uTNmpUQue1fFB12MeOqPJVxo7DjfvwPMNivT1yJs2ghiIt47FwBZr4WbvkS3CbI8524U-N6IoS7G2WGIRoWa80t27y8XxUe6gZt8iJfvt6MWsVHiF_9nB1lmVOPWSTN11HhdVE');",
											"",
											"",
											"pm.environment.set(\"accessToken\", 'eyJraWQiOiI5MTU5NmVhN2M0NWY0ZDVmOTU1NDI2NTIwMTgwODk5NCIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJyZXdhcmRzLmFjY291bnQuYmFja2VuZCtlMmUxQGFsbGljYS5iYW5rIiwiYXVkIjoiQUxMSUNBX0FQSSIsInNjb3BlIjoib3BlbmlkIiwiaXNzIjoiQUxMSUNBX1NDX0dBVEVXQVkiLCJvaWQiOiJBQklPTFlJREQzRklQIiwidXNlclR5cGUiOiIiLCJleHAiOjE3MDExNjI0NjAsImNsaWVudF9pZCI6ImFsbGljYV9iYW5raW5nX3dlYiJ9.v-NYEwBoXKlN4ZxVvgH7vDLJd39ALL8BpvmzKp8ihfIfuT3PE4Md5Tk2dS_ztHfsFHnrh5E0QvxHfw_s7ptH_iu6tV-1965oo5Kr9r7p_LLjdpAyDKHOzGWZ2OWrVNjUJSWo00-5pBrY0ozF89pO2ydp2Ly9TPp-biC5Wm65HuqeFtumeAckYoeDC5rblXzDDRQYpcmYZLm27o7kpA2N2carvgHFAjzgCGbCSP6pJxAFr-ZYNquLvpUQ6kEt7vTU9vHOznOeJfJdWgeUX05wh6Zh3AX_fU6YNjzai2yv53o0EIoO77Kz07sWxV21-S3CkkqC0Vu8kfw2ZtE4eEdhErQAhi88g5k28HSFvw3YqMTKGzjCgYFiPJjlYWL0NVomwnI9o0DI6VdygLzioQzt-EHoyRDUZkm5YOMZtbAlPVsoVIG59D9DtQvJegwaStY-TUsyFto-5TlKV9bc4XIZ_J2X5sCHzWmUu6gzeTEb7B3-ztInV9TlbE_Negb-gi-UcK6wippzemenCZCkAoirmJvoTHG1__uQGfrFhmqUlW7o1eTaR1BP_gaPvqPO0VK0AML7sRD32ySiuvMPChPmZiNMaKlCorJld6J49UL3qzlUwkVromo9vSlntgdxglF3bU5tFZz-3UYv13jUFqG0I6aGhBTAdausa_1XshBOo5w');"
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"type": "text",
										"value": "application/x-www-form-urlencoded"
									}
								],
								"body": {
									"mode": "urlencoded",
									"urlencoded": []
								},
								"url": {
									"raw": "https://postman-echo.com/post",
									"protocol": "https",
									"host": [
										"postman-echo",
										"com"
									],
									"path": [
										"post"
									]
								},
								"description": "SaaScada client A uses password followed by fragmented pin to authenticate."
							},
							"response": []
						}
					]
				},
				{
					"name": "Service Account",
					"item": [
						{
							"name": "Setup Service Account App Medium",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"pm.environment.set(\"accessToken\", null);",
											"pm.environment.set(\"refreshToken\", null);",
											"pm.environment.set(\"appMedium\", pm.environment.get(\"coreServiceAccountAppMedium\"));",
											"pm.environment.set(\"digitalSignatureKey\", pm.environment.get(\"coreServiceAccountDigitalSignatureKey\"));"
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"type": "text",
										"value": "application/x-www-form-urlencoded"
									}
								],
								"body": {
									"mode": "urlencoded",
									"urlencoded": []
								},
								"url": {
									"raw": "https://postman-echo.com/post",
									"protocol": "https",
									"host": [
										"postman-echo",
										"com"
									],
									"path": [
										"post"
									]
								},
								"description": "SaaScada client A uses password followed by fragmented pin to authenticate."
							},
							"response": []
						}
					]
				}
			],
			"description": "These requests are not part of the Core API but can be used to set up access to use the Core API through Postman",
			"auth": {
				"type": "noauth"
			},
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "APIs",
			"item": [
				{
					"name": "people",
					"item": [
						{
							"name": "{personId}",
							"item": [
								{
									"name": "addresses",
									"item": [
										{
											"name": "Gets all addresses associated with a person",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId/addresses",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId",
														"addresses"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												},
												"description": "All addresses are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"addressLine1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"country\": \"BW\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"postCode\": \"<string>\",\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"addressLine2\": \"<string>\",\n      \"county\": \"<string>\",\n      \"type\": \"<string>\",\n      \"fromDate\": \"5825-17-87\",\n      \"toDate\": \"2355-97-19\",\n      \"organisationId\": \"<string>\"\n    },\n    {\n      \"addressLine1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"country\": \"KZ\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"postCode\": \"<string>\",\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT\"\n      },\n      \"addressLine2\": \"<string>\",\n      \"county\": \"<string>\",\n      \"type\": \"<string>\",\n      \"fromDate\": \"2427-68-03\",\n      \"toDate\": \"8167-16-27\",\n      \"organisationId\": \"<string>\"\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "cards",
									"item": [
										{
											"name": "Gets all cards associated with a person",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId",
														"cards"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												},
												"description": "All cards are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"accountId\": \"<uuid>\",\n      \"cardProcessor\": \"GPS\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"personIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"thirdPartyRequiredFields\": {},\n      \"enabled\": \"<boolean>\"\n    },\n    {\n      \"accountId\": \"<uuid>\",\n      \"cardProcessor\": \"ACCOMPLISH\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"personIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"thirdPartyRequiredFields\": {},\n      \"enabled\": \"<boolean>\"\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "associations",
									"item": [
										{
											"name": "Gets all associations for a person",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId/associations",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId",
														"associations"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												},
												"description": "All associations stating which organisations this person is associated to."
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"organisationId\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"organisationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"ownership\": \"<number>\",\n      \"type\": \"TRUSTEE\",\n      \"metadata\": {}\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"organisationId\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"organisationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT\"\n      },\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"ownership\": \"<number>\",\n      \"type\": \"SHAREHOLDER\",\n      \"metadata\": {}\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "customers",
									"item": [
										{
											"name": "Gets all customers a person is apart of",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId/customers",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId",
														"customers"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/customers",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"personIds\": [\n        \"<uuid>\",\n        \"<uuid>\"\n      ],\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"entityIdentifiers\": [\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"ACCOUNT\"\n        },\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"ADDRESS\"\n        }\n      ],\n      \"defaultPaymentsAddressId\": \"<uuid>\"\n    },\n    {\n      \"personIds\": [\n        \"<uuid>\",\n        \"<uuid>\"\n      ],\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"entityIdentifiers\": [\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n        },\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"MIGRATION\"\n        }\n      ],\n      \"defaultPaymentsAddressId\": \"<uuid>\"\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{baseUrl}}/people/:personId/customers",
															"host": [
																"{{baseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/customers",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/customers",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/people/:personId/customers",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"people",
																":personId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "personId",
																	"value": "{{personId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Gets a specific person",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people/:personId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people",
												":personId"
											],
											"variable": [
												{
													"key": "personId",
													"value": "{{personId}}"
												}
											]
										},
										"description": "All addresses are returned"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1998-89-27\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"phoneCountry\": \"HR\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {},\n  \"userIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  }\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Updates a person (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomFirstName}}_{{RandomLastName}}@email.com\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people/:personId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people",
												":personId"
											],
											"variable": [
												{
													"key": "personId",
													"value": "{{personId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1998-89-27\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"phoneCountry\": \"HR\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {},\n  \"userIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/people/:personId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"people",
														":personId"
													],
													"variable": [
														{
															"key": "personId",
															"value": "{{personId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates a person",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"personId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"title\": \"Mx\",\n  \"firstName\": \"{{RandomFirstName}}\",\n  \"lastName\": \"{{RandomLastName}}\",\n  \"dateOfBirth\": \"1980-01-20\",\n  \"email\": \"{{RandomEmail}}\",\n  \"phone\": \"\",\n  \"id\": \"{{RandomUUID}}\",\n  \"phoneCountry\": \"GB\",\n  \"externalId\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/people",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"people"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1860-77-17\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"phoneCountry\": \"BM\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1998-89-27\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"phoneCountry\": \"HR\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {},\n  \"userIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1860-77-17\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"phoneCountry\": \"BM\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1860-77-17\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"phoneCountry\": \"BM\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1860-77-17\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"phoneCountry\": \"BM\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1860-77-17\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"phoneCountry\": \"BM\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"title\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"dateOfBirth\": \"1860-77-17\",\n  \"email\": \"<email>\",\n  \"phone\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"phoneCountry\": \"BM\",\n  \"externalId\": \"<string>\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/people",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Get people (Service account level only)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{coreApiBaseUrl}}/people",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"people"
									],
									"query": [
										{
											"key": "name",
											"value": "<string>",
											"description": "The name of the person",
											"disabled": true
										},
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
											"disabled": true
										}
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the person"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"title\": \"<string>\",\n      \"firstName\": \"<string>\",\n      \"lastName\": \"<string>\",\n      \"dateOfBirth\": \"7021-17-00\",\n      \"email\": \"<email>\",\n      \"phone\": \"<string>\",\n      \"phoneCountry\": \"GN\",\n      \"externalId\": \"<string>\",\n      \"metadata\": {},\n      \"userIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"title\": \"<string>\",\n      \"firstName\": \"<string>\",\n      \"lastName\": \"<string>\",\n      \"dateOfBirth\": \"3361-43-82\",\n      \"email\": \"<email>\",\n      \"phone\": \"<string>\",\n      \"phoneCountry\": \"SJ\",\n      \"externalId\": \"<string>\",\n      \"metadata\": {},\n      \"userIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n      }\n    }\n  ]\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the person"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the person"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the person"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the person"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/people?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"people"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the person"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "organisations",
					"item": [
						{
							"name": "{organisationId}",
							"item": [
								{
									"name": "addresses",
									"item": [
										{
											"name": "Gets all addresses associated with an organisation",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/addresses",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId",
														"addresses"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												},
												"description": "All addresses are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"addressLine1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"country\": \"UZ\",\n      \"id\": \"<uuid>\",\n      \"organisationId\": \"<uuid>\",\n      \"postCode\": \"<string>\",\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"addressLine2\": \"<string>\",\n      \"county\": \"<string>\",\n      \"type\": \"<string>\",\n      \"fromDate\": \"0002-50-91\",\n      \"toDate\": \"9308-01-95\",\n      \"personId\": \"<string>\"\n    },\n    {\n      \"addressLine1\": \"<string>\",\n      \"city\": \"<string>\",\n      \"country\": \"MH\",\n      \"id\": \"<uuid>\",\n      \"organisationId\": \"<uuid>\",\n      \"postCode\": \"<string>\",\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"addressLine2\": \"<string>\",\n      \"county\": \"<string>\",\n      \"type\": \"<string>\",\n      \"fromDate\": \"6737-45-41\",\n      \"toDate\": \"6666-63-72\",\n      \"personId\": \"<string>\"\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/addresses",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"addresses"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "associations",
									"item": [
										{
											"name": "Gets all associations for an organisation",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/associations",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId",
														"associations"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												},
												"description": "All associations stating which people or organisations are associated to this organisation id are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"organisationId\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"organisationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT\"\n      },\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"ownership\": \"<number>\",\n      \"type\": \"SHAREHOLDER\",\n      \"metadata\": {}\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"organisationId\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"organisationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"ownership\": \"<number>\",\n      \"type\": \"DIRECTOR\",\n      \"metadata\": {}\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/associations",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"associations"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "accounts",
									"item": [
										{
											"name": "Gets all accounts associated with an organisation",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/accounts",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId",
														"accounts"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												},
												"description": "All accounts are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/accounts",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"accounts"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"productIssueId\": \"<uuid>\",\n      \"state\": \"SUSPENDED_OUT\",\n      \"productIssue\": {\n        \"generalSettings\": {\n          \"name\": \"<string>\",\n          \"description\": \"<string>\",\n          \"type\": \"LENDING\",\n          \"subType\": \"LENDING_FIXED_TERM\",\n          \"defaultWalletCurrency\": \"GBP\",\n          \"code\": \"<string>\",\n          \"targetCustomerType\": \"COMMERCIAL\",\n          \"legacyId\": \"<string>\",\n          \"imported\": \"<boolean>\"\n        },\n        \"id\": \"<uuid>\",\n        \"name\": \"<string>\",\n        \"state\": \"PUBLISHED\",\n        \"issueNumber\": \"<number>\",\n        \"imported\": \"<boolean>\",\n        \"legacyId\": \"<string>\",\n        \"metadata\": {},\n        \"productId\": \"<uuid>\",\n        \"productIdentifier\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"CARD\"\n        },\n        \"secondaryWalletSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"secondaryWalletTypes\": [\n            {\n              \"id\": \"<string>\",\n              \"generalSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"code\": \"<string>\",\n                \"name\": \"<string>\",\n                \"allowedCurrencies\": [\n                  \"GBP\"\n                ]\n              },\n              \"depositInterestSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"rateType\": \"VARIABLE\",\n                \"rateValue\": \"<number>\",\n                \"accruedPeriodType\": \"QUARTER\",\n                \"accruedPeriodValue\": \"<number>\",\n                \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n                \"postedPeriodType\": \"MATURITY\",\n                \"postedPeriodValue\": \"<number>\",\n                \"daysInYearType\": \"ACTUAL_365\",\n                \"nonWorkingDaysType\": \"<string>\",\n                \"interestBearingThreshold\": {\n                  \"currency\": \"<string>\",\n                  \"amount\": \"0528369717\"\n                },\n                \"postingScheduleType\": \"FIXED_SCHEDULE\",\n                \"rateSourceId\": \"<string>\",\n                \"rateSourceIdentifier\": {\n                  \"entityId\": \"<string>\",\n                  \"entityName\": \"<string>\",\n                  \"entityType\": \"MIGRATION\"\n                },\n                \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n                \"accruedPeriodOnDayOfMonth\": \"<number>\",\n                \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n                \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n                \"postedPeriodOnDayOfMonth\": \"<number>\",\n                \"postedPeriodOnMonth\": \"MAY\",\n                \"cumulativeRateValue\": \"<number>\"\n              }\n            }\n          ]\n        },\n        \"generalPayeeSettings\": {\n          \"restrictNumberOfPayees\": \"<boolean>\",\n          \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"maximumNumberOfPayees\": \"<number>\",\n          \"overridable\": \"<boolean>\"\n        },\n        \"depositCardSettings\": {\n          \"overridable\": \"<boolean>\"\n        },\n        \"depositBankSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n          \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n          \"chapsInboundEnabled\": \"<boolean>\",\n          \"chapsOutboundEnabled\": \"<boolean>\",\n          \"directDebitsEnabled\": \"<boolean>\",\n          \"directCreditsEnabled\": \"<boolean>\",\n          \"bacsInboundEnabled\": \"<boolean>\",\n          \"bacsOutboundEnabled\": \"<boolean>\"\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"MONTH\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_365\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"53701\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n          \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"DECEMBER\",\n          \"cumulativeRateValue\": \"<number>\"\n        },\n        \"depositOverdraftSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"hardLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"8112153575\"\n          },\n          \"softLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"4947189\"\n          },\n          \"reviewPeriodType\": \"WEEK\",\n          \"reviewPeriodValue\": \"<number>\"\n        },\n        \"depositOverdraftInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"FIXED\",\n          \"accruedPeriodType\": \"WEEK\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"YEAR\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_365\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"628702\"\n          },\n          \"rateValue\": \"<number>\",\n          \"rateSourceId\": \"<string>\",\n          \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"MAY\",\n          \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"AUGUST\"\n        },\n        \"depositFixedTermSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"termPeriodType\": \"MONTH\",\n          \"termPeriodValue\": \"<number>\",\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0543\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"052187\"\n          },\n          \"fundingWindowPeriodType\": \"WEEK\",\n          \"fundingWindowPeriodValue\": \"<number>\",\n          \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\",\n          \"initialDepositWindowPeriodType\": \"YEAR\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"cumulativeRateValue\": \"<number>\"\n        },\n        \"depositInstantAccessSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"39\"\n          },\n          \"initialDepositWindowPeriodType\": \"MATURITY\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"fundingWindowPeriodType\": \"QUARTER\",\n          \"fundingWindowPeriodValue\": \"<number>\",\n          \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n        },\n        \"depositFixedTermMaturitySettings\": {\n          \"overridable\": \"<boolean>\",\n          \"maturityType\": \"REINVEST_FULL_BALANCE\",\n          \"maturityWindowPeriodType\": \"WEEK\",\n          \"maturityWindowPeriodValue\": \"<number>\",\n          \"maturityAction1Type\": \"WITHDRAWAL\",\n          \"maturityAction1ProductId\": \"<uuid>\",\n          \"maturityAction1Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"PAYMENT\"\n          }\n        },\n        \"depositPaymentOrderSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"oneApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"665761\"\n          },\n          \"oneApprovalThresholdEnabled\": \"<boolean>\",\n          \"twoApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"81032365304\"\n          },\n          \"twoApprovalThresholdEnabled\": \"<boolean>\",\n          \"threeApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"352524\"\n          },\n          \"threeApprovalThresholdEnabled\": \"<boolean>\",\n          \"restrictToWorkingDay\": \"<boolean>\"\n        },\n        \"depositCoolingOffSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"coolingOffPeriodType\": \"MATURITY\",\n          \"coolingOffPeriodValue\": \"<number>\"\n        }\n      },\n      \"productSubType\": \"<string>\",\n      \"productType\": \"<string>\",\n      \"type\": \"INSTITUTION\",\n      \"defaultWalletId\": \"<string>\",\n      \"defaultCurrency\": \"GBP\",\n      \"availableBalance\": {\n        \"default\": \"SBD\",\n        \"laboris_8a8\": \"<string>\",\n        \"dolor_b\": \"<string>\",\n        \"Ute8\": \"<string>\",\n        \"nulla_b\": \"<string>\"\n      },\n      \"balance\": {\n        \"default\": \"XDR\",\n        \"Duis__a9\": \"<string>\"\n      },\n      \"enabled\": \"<boolean>\",\n      \"customerId\": \"7Y&)a\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"nextMigrationId\": \"<uuid>\",\n      \"nextMigrationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"migrationStatus\": \"COMPLETE\",\n      \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n      \"lastSuccessfulMigrationId\": \"<uuid>\",\n      \"lastSuccessfulMigrationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"accountSettings\": {\n        \"generalSettings\": {\n          \"name\": \"<string>\",\n          \"description\": \"<string>\",\n          \"type\": \"DEPOSIT\",\n          \"subType\": \"DEPOSIT_INSTANT_ACCESS\",\n          \"defaultWalletCurrency\": \"GBP\",\n          \"code\": \"<string>\",\n          \"targetCustomerType\": \"RETAIL\",\n          \"legacyId\": \"<string>\",\n          \"imported\": \"<boolean>\"\n        },\n        \"generalPayeeSettings\": {\n          \"restrictNumberOfPayees\": \"<boolean>\",\n          \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"maximumNumberOfPayees\": \"<number>\",\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\"\n        },\n        \"depositCardSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\"\n        },\n        \"depositBankSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n          \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n          \"chapsInboundEnabled\": \"<boolean>\",\n          \"chapsOutboundEnabled\": \"<boolean>\",\n          \"directDebitsEnabled\": \"<boolean>\",\n          \"directCreditsEnabled\": \"<boolean>\",\n          \"bacsInboundEnabled\": \"<boolean>\",\n          \"bacsOutboundEnabled\": \"<boolean>\",\n          \"overridden\": \"<boolean>\"\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"accruedPeriodType\": \"YEAR\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n          \"postedPeriodType\": \"YEAR\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"5600160\"\n          },\n          \"postingScheduleType\": \"FIXED_SCHEDULE\",\n          \"overridden\": \"<boolean>\",\n          \"rateValue\": \"<number>\",\n          \"cumulativeRateValue\": \"<number>\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"CARD\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"JUNE\",\n          \"postedPeriodOnDayOfWeek\": \"FRIDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"FEBRUARY\"\n        },\n        \"depositOverdraftSettings\": {\n          \"enabled\": \"<boolean>\",\n          \"hardLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0487\"\n          },\n          \"softLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"44533997\"\n          },\n          \"overridden\": \"<boolean>\",\n          \"overridable\": \"<boolean>\",\n          \"reviewPeriodType\": \"WEEK\",\n          \"reviewPeriodValue\": \"<number>\"\n        },\n        \"depositOverdraftInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"FIXED\",\n          \"accruedPeriodType\": \"MATURITY\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n          \"postedPeriodType\": \"MATURITY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"2444553729\"\n          },\n          \"overridden\": \"<boolean>\",\n          \"rateValue\": \"<number>\",\n          \"cumulativeRateValue\": \"<number>\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ASSOCIATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"JUNE\",\n          \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"APRIL\"\n        },\n        \"depositFixedTermSettings\": {\n          \"termPeriodType\": \"DAY\",\n          \"termPeriodValue\": \"<number>\",\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"262705688\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"758448\"\n          },\n          \"fundingWindowPeriodType\": \"QUARTER\",\n          \"fundingWindowPeriodValue\": \"<number>\",\n          \"initialDepositWindowPeriodType\": \"QUARTER\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"overridden\": \"<boolean>\",\n          \"overridable\": \"<boolean>\"\n        },\n        \"depositInstantAccessSettings\": {\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0165564\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"5072326\"\n          },\n          \"initialDepositWindowPeriodType\": \"MATURITY\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"fundingWindowPeriodType\": \"MONTH\",\n          \"fundingWindowPeriodValue\": \"<number>\"\n        },\n        \"depositFixedTermMaturitySettings\": {\n          \"overridden\": \"<boolean>\",\n          \"overridable\": \"<boolean>\",\n          \"maturityWindowPeriodType\": \"QUARTER\",\n          \"maturityWindowPeriodValue\": \"<number>\",\n          \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n          \"maturityAction1Type\": \"WITHDRAWAL\",\n          \"maturityAction1ProductId\": \"<uuid>\",\n          \"maturityAction1ProductIssueId\": \"<uuid>\",\n          \"maturityAction1Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"USER\"\n          },\n          \"maturityAction1ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ADDRESS\"\n          },\n          \"maturityAction1Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"4381650\"\n          },\n          \"maturityAction2Type\": \"REINVEST\",\n          \"maturityAction2ProductId\": \"<uuid>\",\n          \"maturityAction2ProductIssueId\": \"<uuid>\",\n          \"maturityAction2Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ADDRESS\"\n          },\n          \"maturityAction2ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"PRODUCT\"\n          },\n          \"maturityAction2Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"9705600502\"\n          },\n          \"maturityAction3Type\": \"REINVEST\",\n          \"maturityAction3ProductId\": \"<uuid>\",\n          \"maturityAction3ProductIssueId\": \"<uuid>\",\n          \"maturityAction3Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"CARD\"\n          },\n          \"maturityAction3ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"SERVICE_ACCOUNT\"\n          },\n          \"maturityAction3Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"63\"\n          },\n          \"maturityAction4Type\": \"WITHDRAWAL\",\n          \"maturityAction4ProductId\": \"<uuid>\",\n          \"maturityAction4ProductIssueId\": \"<uuid>\",\n          \"maturityAction4Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ASSOCIATION\"\n          },\n          \"maturityAction4ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"RATE_SOURCE\"\n          },\n          \"maturityAction4Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"228\"\n          }\n        },\n        \"secondaryWalletSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\",\n          \"secondaryWalletTypes\": [\n            {\n              \"id\": \"<string>\",\n              \"generalSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"code\": \"<string>\",\n                \"name\": \"<string>\",\n                \"allowedCurrencies\": [\n                  \"GBP\"\n                ]\n              },\n              \"depositInterestSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"rateType\": \"VARIABLE\",\n                \"rateValue\": \"<number>\",\n                \"accruedPeriodType\": \"MATURITY\",\n                \"accruedPeriodValue\": \"<number>\",\n                \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n                \"postedPeriodType\": \"DAY\",\n                \"postedPeriodValue\": \"<number>\",\n                \"daysInYearType\": \"ACTUAL_365\",\n                \"nonWorkingDaysType\": \"<string>\",\n                \"interestBearingThreshold\": {\n                  \"currency\": \"<string>\",\n                  \"amount\": \"397181\"\n                },\n                \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n                \"rateSourceId\": \"<string>\",\n                \"rateSourceIdentifier\": {\n                  \"entityId\": \"<string>\",\n                  \"entityName\": \"<string>\",\n                  \"entityType\": \"PERSON\"\n                },\n                \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n                \"accruedPeriodOnDayOfMonth\": \"<number>\",\n                \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n                \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n                \"postedPeriodOnDayOfMonth\": \"<number>\",\n                \"postedPeriodOnMonth\": \"JANUARY\",\n                \"cumulativeRateValue\": \"<number>\"\n              }\n            }\n          ]\n        },\n        \"depositPaymentOrderSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\",\n          \"oneApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"52113\"\n          },\n          \"oneApprovalThresholdEnabled\": \"<boolean>\",\n          \"twoApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"19483516\"\n          },\n          \"twoApprovalThresholdEnabled\": \"<boolean>\",\n          \"threeApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"9670327616\"\n          },\n          \"threeApprovalThresholdEnabled\": \"<boolean>\",\n          \"restrictToWorkingDay\": \"<boolean>\"\n        },\n        \"depositCoolingOffSettings\": {\n          \"enabled\": \"<boolean>\",\n          \"coolingOffPeriodType\": \"QUARTER\",\n          \"coolingOffPeriodValue\": \"<number>\"\n        }\n      },\n      \"accountValues\": {\n        \"depositFixedTermValues\": {\n          \"fundingWindowStartDateUtc\": \"<dateTime>\",\n          \"fundingWindowEndDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n        },\n        \"depositFixedTermMaturityValues\": {\n          \"maturityDateUtc\": \"<dateTime>\",\n          \"maturityCalendarDateUtc\": \"<dateTime>\",\n          \"maturityWindowStartDateUtc\": \"<dateTime>\",\n          \"maturityBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"65531\"\n          }\n        },\n        \"depositValues\": {\n          \"fundingWindowStartDateUtc\": \"<dateTime>\",\n          \"fundingWindowEndDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n        },\n        \"depositCoolingOffValues\": {\n          \"coolingOffStartDateUtc\": \"<dateTime>\",\n          \"coolingOffEndDateUtc\": \"<dateTime>\"\n        }\n      },\n      \"wallets\": [\n        {\n          \"id\": \"<uuid>\",\n          \"name\": \"<string>\",\n          \"state\": \"ACTIVE\",\n          \"secondaryWalletTypeCode\": \"<string>\",\n          \"type\": \"SECONDARY\",\n          \"currency\": \"GBP\",\n          \"availableBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"59850619\"\n          },\n          \"balance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"045201971\"\n          },\n          \"createdAt\": \"<dateTime>\",\n          \"createdAtUtc\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"updatedAtUtc\": \"<dateTime>\",\n          \"default\": \"<boolean>\",\n          \"walletSettings\": {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"FIXED\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"MATURITY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"YEAR\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_365\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"1\"\n              },\n              \"postingScheduleType\": \"FIXED_SCHEDULE\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"PRODUCT_ISSUE\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"MAY\",\n              \"postedPeriodOnDayOfWeek\": \"SATURDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"AUGUST\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          }\n        }\n      ],\n      \"inboundOverrideTransactionReference\": \"<string>\",\n      \"outboundOverrideTransactionReference\": \"<string>\",\n      \"accountStateReasonCode\": \"FTD_MATURED\",\n      \"accountStateReasonDescription\": \"<string>\",\n      \"imported\": \"<boolean>\",\n      \"legacyId\": \"<string>\",\n      \"productIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"productIssueIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"paymentInterfaces\": [\n        {\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\",\n          \"iban\": \"<string>\",\n          \"bic\": \"<string>\",\n          \"redirecionAccount\": {\n            \"name\": \"<string>\",\n            \"identification\": {\n              \"iban\": \"<string>\",\n              \"bban\": \"<string>\",\n              \"accountNumber\": \"<string>\",\n              \"sortCode\": \"<string>\"\n            }\n          }\n        }\n      ],\n      \"metadata\": {}\n    }\n  ],\n  \"accounts\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"state\": \"SUSPENDED_OUT\",\n      \"type\": \"CUSTOMER\",\n      \"defaultWalletId\": \"<string>\",\n      \"defaultCurrency\": \"GBP\",\n      \"enabled\": \"<boolean>\",\n      \"createdAt\": \"<integer>\",\n      \"customerId\": \"<string>\"\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/accounts",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"accounts"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/accounts",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"accounts"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/accounts",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"accounts"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "customers",
									"item": [
										{
											"name": "Gets all customer entities for an organisation",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/customers",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId",
														"customers"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{baseUrl}}/organisations/:organisationId/customers",
															"host": [
																"{{baseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"organisationId\": \"<string>\",\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"organisationId\": \"<string>\",\n      \"entityIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      }\n    }\n  ]\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/customers",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/organisations/:organisationId/customers",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{baseUrl}}/organisations/:organisationId/customers",
															"host": [
																"{{baseUrl}}"
															],
															"path": [
																"organisations",
																":organisationId",
																"customers"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "organisationId",
																	"value": "{{organisationId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Gets a specific organisation",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations",
												":organisationId"
											],
											"variable": [
												{
													"key": "organisationId",
													"value": "{{organisationId}}"
												}
											]
										},
										"description": "All accounts are returned"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"registrationNumber\": \"<string>\",\n  \"registrationCountry\": \"BY\",\n  \"metadata\": {}\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Updates an organisation (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations",
												":organisationId"
											],
											"variable": [
												{
													"key": "organisationId",
													"value": "{{organisationId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"registrationNumber\": \"<string>\",\n  \"registrationCountry\": \"BY\",\n  \"metadata\": {}\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomWord}} Patch Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/organisations/:organisationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"organisations",
														":organisationId"
													],
													"variable": [
														{
															"key": "organisationId",
															"value": "{{organisationId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates an organisation",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"organisationId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/organisations",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"organisations"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"registrationNumber\": \"<string>\",\n  \"registrationCountry\": \"BY\",\n  \"metadata\": {}\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Post Ltd\",\n  \"registrationNumber\": \"{{RandomNumber}}\",\n  \"registrationCountry\": \"GB\",\n  \"id\": \"{{RandomUUID}}\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Gets all organisations",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/organisations",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"organisations"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
											"disabled": true
										}
									]
								},
								"description": "All organisations are returned"
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"registrationNumber\": \"<string>\",\n      \"registrationCountry\": \"LS\",\n      \"metadata\": {}\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"registrationNumber\": \"<string>\",\n      \"registrationCountry\": \"VC\",\n      \"metadata\": {}\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/organisations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"organisations"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "associations",
					"item": [
						{
							"name": "{associationId}",
							"item": [
								{
									"name": "Get all relationships between people and organisations",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations/:associationId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations",
												":associationId"
											],
											"variable": [
												{
													"key": "associationId",
													"value": "{{associationId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"organisationId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"organisationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYEE\"\n  },\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"ownership\": \"<number>\",\n  \"type\": \"BENEFICIARY\",\n  \"metadata\": {}\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Change a relationship between a person and an organisation (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"ownership\": {{RandomNumber}},\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations/:associationId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations",
												":associationId"
											],
											"variable": [
												{
													"key": "associationId",
													"value": "{{associationId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"organisationId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"organisationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYEE\"\n  },\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"ownership\": \"<number>\",\n  \"type\": \"BENEFICIARY\",\n  \"metadata\": {}\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"DIRECTOR\",\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Remove a relationship between a person and an organisation (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations/:associationId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations",
												":associationId"
											],
											"variable": [
												{
													"key": "associationId",
													"value": "{{associationId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"organisationId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"organisationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYEE\"\n  },\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"ownership\": \"<number>\",\n  \"type\": \"BENEFICIARY\",\n  \"metadata\": {}\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/associations/:associationId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"associations",
														":associationId"
													],
													"variable": [
														{
															"key": "associationId",
															"value": "{{associationId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Create a relationship between a person and an organisation",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"associationId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": {{RandomNumber}},\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/associations",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"associations"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"organisationId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"organisationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYEE\"\n  },\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"ownership\": \"<number>\",\n  \"type\": \"BENEFICIARY\",\n  \"metadata\": {}\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"ownership\": \"{{RandomNumber}}\",\n  \"type\": \"TRUSTEE\",\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/associations",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"associations"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "addresses",
					"item": [
						{
							"name": "{addressId}",
							"item": [
								{
									"name": "Gets a specific address",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses",
												":addressId"
											],
											"variable": [
												{
													"key": "addressId",
													"value": "{{addressId}}"
												}
											]
										},
										"description": "All addresses are returned"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"NZ\",\n  \"id\": \"<uuid>\",\n  \"postCode\": \"<string>\",\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"0095-70-97\",\n  \"toDate\": \"9703-87-84\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Update a specific address (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses",
												":addressId"
											],
											"variable": [
												{
													"key": "addressId",
													"value": "{{addressId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"NZ\",\n  \"id\": \"<uuid>\",\n  \"postCode\": \"<string>\",\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"0095-70-97\",\n  \"toDate\": \"9703-87-84\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/addresses/:addressId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"addresses",
														":addressId"
													],
													"variable": [
														{
															"key": "addressId",
															"value": "{{addressId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Create an address (Person)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"addressId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"county\": \"{{RandomWord}} County\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\",\n  \"personId\": \"{{personId}}\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/addresses",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"addresses"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"NZ\",\n  \"id\": \"<uuid>\",\n  \"postCode\": \"<string>\",\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"0095-70-97\",\n  \"toDate\": \"9703-87-84\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Create an address (Organisation)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"addressId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"country\": \"GB\",\n  \"postCode\": \"{{RandomWord}}{{RandomNumber}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"county\": \"{{RandomWord}} County\",\n  \"type\": \"\",\n  \"fromDate\": \"2001-01-05\",\n  \"toDate\": \"2005-01-05\",\n  \"organisationId\": \"{{organisationId}}\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/addresses",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"addresses"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"NZ\",\n  \"id\": \"<uuid>\",\n  \"postCode\": \"<string>\",\n  \"entityIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"0095-70-97\",\n  \"toDate\": \"9703-87-84\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"addressLine1\": \"<string>\",\n  \"city\": \"<string>\",\n  \"country\": \"KH\",\n  \"postCode\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"addressLine2\": \"<string>\",\n  \"county\": \"<string>\",\n  \"type\": \"<string>\",\n  \"fromDate\": \"3491-18-35\",\n  \"toDate\": \"5120-08-13\",\n  \"personId\": \"<string>\",\n  \"organisationId\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/addresses",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"addresses"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "customers",
					"item": [
						{
							"name": "{customerId}",
							"item": [
								{
									"name": "Get a customer",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers/:customerId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers",
												":customerId"
											],
											"variable": [
												{
													"key": "customerId",
													"value": "{{customerId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"entityIdentifiers\": [\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"WALLET\"\n    },\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"MIGRATION\"\n    }\n  ],\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Patch a customer (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers/:customerId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers",
												":customerId"
											],
											"variable": [
												{
													"key": "customerId",
													"value": "{{customerId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"entityIdentifiers\": [\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"WALLET\"\n    },\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"MIGRATION\"\n    }\n  ],\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{baseUrl}}/customers/:customerId",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/customers/:customerId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"customers",
														":customerId"
													],
													"variable": [
														{
															"key": "customerId",
															"value": "{{customerId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates a customer (Person)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"customerId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"personIds\": [\n    \"{{personId}}\"\n  ],\n  \"id\": \"{{RandomUUID}}\",\n  \"name\": \"{{RandomFullName}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/customers",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"customers"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"entityIdentifiers\": [\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"WALLET\"\n    },\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"MIGRATION\"\n    }\n  ],\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Creates a customer (Organisation)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"customerId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"id\": \"{{RandomUUID}}\",\n  \"name\": \"{{RandomFullName}}\",\n  \"organisationId\": \"{{organisationId}}\",\n  \"defaultPaymentsAddressId\": \"{{addressId}}\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/customers",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"customers"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"entityIdentifiers\": [\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"WALLET\"\n    },\n    {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"MIGRATION\"\n    }\n  ],\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personIds\": [\n    \"<uuid>\",\n    \"<uuid>\"\n  ],\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"defaultPaymentsAddressId\": \"<uuid>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Get customer (Service account level only)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/customers",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"customers"
									],
									"query": [
										{
											"key": "name",
											"value": "<string>",
											"description": "The name of the customer",
											"disabled": true
										},
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
											"disabled": true
										}
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the customer"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"personIds\": [\n        \"<uuid>\",\n        \"<uuid>\"\n      ],\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"entityIdentifiers\": [\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"ASSOCIATION\"\n        },\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"WALLET\"\n        }\n      ],\n      \"defaultPaymentsAddressId\": \"<uuid>\"\n    },\n    {\n      \"personIds\": [\n        \"<uuid>\",\n        \"<uuid>\"\n      ],\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"entityIdentifiers\": [\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"USER\"\n        },\n        {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"INSTITUTIONAL_USER\"\n        }\n      ],\n      \"defaultPaymentsAddressId\": \"<uuid>\"\n    }\n  ]\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the customer"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the customer"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the customer"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the customer"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/customers?name=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"customers"
											],
											"query": [
												{
													"key": "name",
													"value": "<string>",
													"description": "The name of the customer"
												},
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "users",
					"item": [
						{
							"name": "{userId}",
							"item": [
								{
									"name": "Gets a specific user",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/users/{{userId}}",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users",
												"{{userId}}"
											]
										},
										"description": "All addresses are returned"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/users/{{userId}}",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"users",
														"{{userId}}"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"username\": \"<string>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  }\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/users/{{userId}}",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"users",
														"{{userId}}"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/users/{{userId}}",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"users",
														"{{userId}}"
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/users/{{userId}}",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"users",
														"{{userId}}"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/users/{{userId}}",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"users",
														"{{userId}}"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates a user from a person",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"userId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/users",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"users"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/users",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"username\": \"<string>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/users",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/users",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/users",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/users",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"personId\": \"{{personId}}\",\n  \"id\": \"{{RandomUUID}}\",\n  \"username\": \"{{RandomWord}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/users",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"users"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "accounts",
					"item": [
						{
							"name": "{accountId}",
							"item": [
								{
									"name": "state",
									"item": [
										{
											"name": "Amends an account state",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"state\": \"READ_ONLY\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"Testing account state change\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"state"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"state\": \"CLOSED\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"state\": \"CLOSED\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"state\": \"CLOSED\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"state\": \"CLOSED\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"state\": \"CLOSED\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"state\": \"CLOSED\",\n  \"accountStateReasonCode\": \"CASS_SWITCH\",\n  \"accountStateReasonDescription\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "redirection-account",
									"item": [
										{
											"name": "Amends the redirection account linked to a SaaScada account. This is primarily to be used for CASS switching, to allow accounts in a READ_ONLY state to redirect incoming CHAPS payments to their respective new bank account - however this funtionality is in",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"redirection-account"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"redirection-account"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"redirection-account"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"redirection-account"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"redirection-account"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"redirection-account"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"name\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"bban\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"accountNumber\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/redirection-account",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"redirection-account"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "payees",
									"item": [
										{
											"name": "Gets all of the payees associated with the account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"payees"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "iban",
															"value": "<string>",
															"description": "Optional field to filter payees by",
															"disabled": true
														},
														{
															"key": "sortCode",
															"value": "<string>",
															"description": "Optional field to filter payees by",
															"disabled": true
														},
														{
															"key": "accountNumber",
															"value": "<string>",
															"description": "Optional field to filter payees by",
															"disabled": true
														},
														{
															"key": "state",
															"value": "ACTIVE",
															"description": "Filter payees by their state"
														},
														{
															"key": "order",
															"value": "ASC",
															"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
														},
														{
															"key": "orderBy",
															"value": "name",
															"description": "Optional field to order payees by",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payees"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "iban",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "sortCode",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "accountNumber",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACTIVE",
																	"description": "Filter payees by their state"
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "name",
																	"description": "Optional field to order payees by",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"accountId\": \"<uuid>\",\n      \"accountType\": \"INSTITUTION\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"createdBy\": \"<uuid>\",\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"payeeType\": \"IBAN\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"institutionalAccountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"state\": \"ACTIVE\",\n      \"addressLine1\": \"<string>\",\n      \"addressLine2\": \"<string>\",\n      \"city\": \"<string>\",\n      \"county\": \"<string>\",\n      \"postCode\": \"<string>\",\n      \"country\": \"KG\",\n      \"reference\": \" \",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\"\n    },\n    {\n      \"accountId\": \"<uuid>\",\n      \"accountType\": \"CUSTOMER\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"createdBy\": \"<uuid>\",\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"payeeType\": \"IBAN\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"institutionalAccountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"state\": \"DELETED\",\n      \"addressLine1\": \"<string>\",\n      \"addressLine2\": \"<string>\",\n      \"city\": \"<string>\",\n      \"county\": \"<string>\",\n      \"postCode\": \"<string>\",\n      \"country\": \"IS\",\n      \"reference\": \"Z0I\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payees"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "iban",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "sortCode",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "accountNumber",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACTIVE",
																	"description": "Filter payees by their state"
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "name",
																	"description": "Optional field to order payees by",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payees"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "iban",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "sortCode",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "accountNumber",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACTIVE",
																	"description": "Filter payees by their state"
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "name",
																	"description": "Optional field to order payees by",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payees"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "iban",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "sortCode",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "accountNumber",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACTIVE",
																	"description": "Filter payees by their state"
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "name",
																	"description": "Optional field to order payees by",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payees"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "iban",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "sortCode",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "accountNumber",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACTIVE",
																	"description": "Filter payees by their state"
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "name",
																	"description": "Optional field to order payees by",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payees?state=ACTIVE&order=ASC",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payees"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "iban",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "sortCode",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "accountNumber",
																	"value": "<string>",
																	"description": "Optional field to filter payees by",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACTIVE",
																	"description": "Filter payees by their state"
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "name",
																	"description": "Optional field to order payees by",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "mandates",
									"item": [
										{
											"name": "{mandateId}",
											"item": [
												{
													"name": "cancel",
													"item": [
														{
															"name": "Requests cancellation for a Direct Debit mandate",
															"event": [
																{
																	"listen": "test",
																	"script": {
																		"exec": [
																			"const response = pm.response;",
																			"",
																			"pm.test(\"Status code is 200\", function () {",
																			"    pm.expect(response).to.have.status(200);",
																			"});",
																			"",
																			"pm.test(\"Sub 2s response\", function () {",
																			"    pm.expect(response.responseTime).to.be.below(2000);",
																			"});"
																		],
																		"type": "text/javascript"
																	}
																}
															],
															"request": {
																"method": "POST",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>",
																		"disabled": true
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>",
																		"disabled": true
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"reasonCode\": \"1\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId",
																		"cancel"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"response": [
																{
																	"name": "Success",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "OK",
																	"code": 200,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
																},
																{
																	"name": "Bad Request",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Bad Request",
																	"code": 400,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
																},
																{
																	"name": "Forbidden",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Forbidden",
																	"code": 403,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																},
																{
																	"name": "Not Found",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Not Found",
																	"code": 404,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"message\": \"<string>\"\n}"
																},
																{
																	"name": "Conflict",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Conflict",
																	"code": 409,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																},
																{
																	"name": "Server Error",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Internal Server Error",
																	"code": 500,
																	"_postman_previewlanguage": "text",
																	"header": [
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": ""
																},
																{
																	"name": "Service Unavailable",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"1\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/cancel",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"cancel"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Service Unavailable",
																	"code": 503,
																	"_postman_previewlanguage": "text",
																	"header": [
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": ""
																}
															]
														}
													]
												},
												{
													"name": "return",
													"item": [
														{
															"name": "Requests return of a Direct Debit mandate",
															"event": [
																{
																	"listen": "test",
																	"script": {
																		"exec": [
																			"const response = pm.response;",
																			"",
																			"pm.test(\"Status code is 200\", function () {",
																			"    pm.expect(response).to.have.status(200);",
																			"});",
																			"",
																			"pm.test(\"Sub 2s response\", function () {",
																			"    pm.expect(response.responseTime).to.be.below(2000);",
																			"});"
																		],
																		"type": "text/javascript"
																	}
																}
															],
															"request": {
																"method": "POST",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>",
																		"disabled": true
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>",
																		"disabled": true
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"reasonCode\": \"H\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId",
																		"return"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"response": [
																{
																	"name": "Success",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "OK",
																	"code": 200,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
																},
																{
																	"name": "Bad Request",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Bad Request",
																	"code": 400,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
																},
																{
																	"name": "Forbidden",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Forbidden",
																	"code": 403,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																},
																{
																	"name": "Not Found",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Not Found",
																	"code": 404,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"message\": \"<string>\"\n}"
																},
																{
																	"name": "Conflict",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Conflict",
																	"code": 409,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																},
																{
																	"name": "Server Error",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Internal Server Error",
																	"code": 500,
																	"_postman_previewlanguage": "text",
																	"header": [
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": ""
																},
																{
																	"name": "Service Unavailable",
																	"originalRequest": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																				"key": "X-Digital-Signature",
																				"value": "<string>"
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"reasonCode\": \"H\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId/return",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"mandates",
																				":mandateId",
																				"return"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "mandateId",
																					"value": "{{mandateId}}"
																				}
																			]
																		}
																	},
																	"status": "Service Unavailable",
																	"code": 503,
																	"_postman_previewlanguage": "text",
																	"header": [
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": ""
																}
															]
														}
													]
												},
												{
													"name": "Gets a single Direct Debit mandate by id",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates",
																":mandateId"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																},
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
														},
														{
															"name": "Bad Request",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "Bad Request",
															"code": 400,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Conflict",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "Conflict",
															"code": 409,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates/:mandateId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"mandates",
																		":mandateId"
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "mandateId",
																			"value": "{{mandateId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												}
											]
										},
										{
											"name": "Gets all of the Direct Debit mandates associated with the account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    if (responseBody.results.length > 0) {",
															"        pm.environment.set(\"mandateId\", responseBody.results[0].id);",
															"    }",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"mandates"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "state",
															"value": "CANCELLED",
															"description": "mandate state filter",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates?state=CANCELLED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter"
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"mandateId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"payerName\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"serviceUserNumber\": \"<string>\",\n      \"originatorName\": \"<string>\",\n      \"lastRequestedPayment\": {\n        \"amount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2596\"\n        },\n        \"dateUtc\": \"<dateTime>\"\n      },\n      \"state\": \"PENDING_INITIATION\",\n      \"mandateType\": \"ORIGINATION\",\n      \"createdAtUtc\": \"<dateTime>\"\n    },\n    {\n      \"mandateId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"payerName\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"serviceUserNumber\": \"<string>\",\n      \"originatorName\": \"<string>\",\n      \"lastRequestedPayment\": {\n        \"amount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"0\"\n        },\n        \"dateUtc\": \"<dateTime>\"\n      },\n      \"state\": \"CANCELLED\",\n      \"mandateType\": \"ORIGINATION\",\n      \"createdAtUtc\": \"<dateTime>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates?state=CANCELLED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter"
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates?state=CANCELLED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter"
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates?state=CANCELLED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter"
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates?state=CANCELLED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter"
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/mandates?state=CANCELLED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter"
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "card-interfaces",
									"item": [
										{
											"name": "Gets third party card interfaces linked to an account.",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"card-interfaces"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "This endpoint shows all the card accounts linked to this account on third  party card processor systems"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"cardProcessor\": \"ACCOMPLISH\",\n      \"enabled\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"cardProcessor\": \"GPS\",\n      \"enabled\": \"<boolean>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "payment-interfaces",
									"item": [
										{
											"name": "Gets third party payment interfaces linked to an account.",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"payment-interfaces"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "This endpoint shows all the third party payment interfaces linked to this account"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"paymentAccountIdentifier\": \"<string>\",\n      \"paymentProcessor\": \"CLEARBANK\",\n      \"enabled\": \"<boolean>\",\n      \"localisation\": {\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"bic\": \"<string>\",\n        \"upic\": \"<string>\",\n        \"cuid\": \"<string>\"\n      },\n      \"redirectionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"paymentAccountIdentifier\": \"<string>\",\n      \"paymentProcessor\": \"CLEARBANK\",\n      \"enabled\": \"<boolean>\",\n      \"localisation\": {\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"bic\": \"<string>\",\n        \"upic\": \"<string>\",\n        \"cuid\": \"<string>\"\n      },\n      \"redirectionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "transactions",
									"item": [
										{
											"name": "Gets a summary of all of the transactions from the specified account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"transactions"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "fromDateUtc",
															"value": "<date>",
															"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "toDateUtc",
															"value": "<date>",
															"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "order",
															"value": "ASC",
															"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
														},
														{
															"key": "orderBy",
															"value": "createdAtUtc",
															"description": "Optional field to order transactions by"
														},
														{
															"key": "transactionType",
															"value": "MANUAL_OUTBOUND_PAYMENT",
															"description": "Optional transaction type filter",
															"disabled": true
														},
														{
															"key": "subTransactionType",
															"value": "<string>",
															"description": "Optional client transaction type filter",
															"disabled": true
														},
														{
															"key": "fromAmount",
															"value": "<number>",
															"description": "Optional from amount filter",
															"disabled": true
														},
														{
															"key": "toAmount",
															"value": "<number>",
															"description": "Optional to amount filter",
															"disabled": true
														},
														{
															"key": "reference",
															"value": "<string>",
															"description": "Optional reference filter",
															"disabled": true
														},
														{
															"key": "mandateId",
															"value": "<string>",
															"description": "The unique identifier for the related mandate.",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"78\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"GPS\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"53957111829\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Floor\",\n            \"fixedAmountMethod\": \"Before\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfCeil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"60076522\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"MARQETA\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"941191\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"SAASCADA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfCeil\",\n            \"fixedAmountMethod\": \"Before\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Ceil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"transactions\": [\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"752716191\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"transactionId\": \"<uuid>\",\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"ACCOMPLISH\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"139228\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"SAASCADA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfCeil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfFloor\",\n            \"fixedAmountMethod\": \"Before\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"83101\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"transactionId\": \"<uuid>\",\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"MARQETA\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"4\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"GPS\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Floor\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfFloor\",\n            \"fixedAmountMethod\": \"Before\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "pending-transactions",
									"item": [
										{
											"name": "Gets a summary of all of the pending transactions from the specified account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"pending-transactions"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "fromDateUtc",
															"value": "<date>",
															"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "toDateUtc",
															"value": "<date>",
															"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "order",
															"value": "ASC",
															"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
														},
														{
															"key": "orderBy",
															"value": "createdAtUtc",
															"description": "Optional field to order transactions by"
														},
														{
															"key": "transactionType",
															"value": "MANUAL_OUTBOUND_PAYMENT",
															"description": "Optional transaction type filter",
															"disabled": true
														},
														{
															"key": "subTransactionType",
															"value": "<string>",
															"description": "Optional client transaction type filter",
															"disabled": true
														},
														{
															"key": "fromAmount",
															"value": "<number>",
															"description": "Optional from amount filter",
															"disabled": true
														},
														{
															"key": "toAmount",
															"value": "<number>",
															"description": "Optional to amount filter",
															"disabled": true
														},
														{
															"key": "reference",
															"value": "<string>",
															"description": "Optional reference filter",
															"disabled": true
														},
														{
															"key": "mandateId",
															"value": "<string>",
															"description": "The unique identifier for the related mandate.",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"13\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"pendingAmount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"53314\"\n      },\n      \"debitCreditCode\": \"CRDT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": {\n        \"value\": \"<Error: Could not resolve allOf schema\"\n      },\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"149\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"feeDescription\": \"<string>\",\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"53873\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"pendingAmount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1753569513\"\n      },\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": {\n        \"value\": \"<Error: Could not resolve allOf schema\"\n      },\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"853\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"feeDescription\": \"<string>\",\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "wallets",
									"item": [
										{
											"name": "{walletId}",
											"item": [
												{
													"name": "mandates",
													"item": [
														{
															"name": "transfer",
															"item": [
																{
																	"name": "Request transfer of a Direct Debit mandate associated with the wallet.",
																	"event": [
																		{
																			"listen": "test",
																			"script": {
																				"exec": [
																					"const response = pm.response;",
																					"",
																					"pm.test(\"Status code is 200\", function () {",
																					"    pm.expect(response).to.have.status(200);",
																					"});",
																					"",
																					"pm.test(\"Sub 2s response\", function () {",
																					"    pm.expect(response.responseTime).to.be.below(2000);",
																					"});"
																				],
																				"type": "text/javascript"
																			}
																		}
																	],
																	"request": {
																		"method": "POST",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>",
																				"disabled": true
																			},
																			{
																				"key": "Content-Type",
																				"value": "application/json"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			}
																		],
																		"body": {
																			"mode": "raw",
																			"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																			"options": {
																				"raw": {
																					"headerFamily": "json",
																					"language": "json"
																				}
																			}
																		},
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates",
																				"transfer"
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		},
																		"description": "Only required if transferring paper mandate as part of the Current Account Switching Service. Supply either sort code and account number for UK payee type, or IBAN for IBAN payee type."
																	},
																	"response": [
																		{
																			"name": "Success",
																			"originalRequest": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>"
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"key": "Accept",
																						"value": "application/json"
																					},
																					{
																						"description": "Added as a part of security scheme: apikey",
																						"key": "X-App-Medium",
																						"value": "<API Key>"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						"transfer"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						}
																					]
																				}
																			},
																			"status": "OK",
																			"code": 200,
																			"_postman_previewlanguage": "json",
																			"header": [
																				{
																					"key": "Content-Type",
																					"value": "application/json"
																				},
																				{
																					"key": "X-Correlation-Id",
																					"value": "",
																					"description": ""
																				}
																			],
																			"cookie": [],
																			"body": "{\n  \"accepted\": \"<boolean>\"\n}"
																		},
																		{
																			"name": "Bad Request",
																			"originalRequest": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>"
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"key": "Accept",
																						"value": "application/json"
																					},
																					{
																						"description": "Added as a part of security scheme: apikey",
																						"key": "X-App-Medium",
																						"value": "<API Key>"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						"transfer"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						}
																					]
																				}
																			},
																			"status": "Bad Request",
																			"code": 400,
																			"_postman_previewlanguage": "json",
																			"header": [
																				{
																					"key": "Content-Type",
																					"value": "application/json"
																				},
																				{
																					"key": "X-Correlation-Id",
																					"value": "",
																					"description": ""
																				}
																			],
																			"cookie": [],
																			"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
																		},
																		{
																			"name": "Forbidden",
																			"originalRequest": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>"
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"key": "Accept",
																						"value": "application/json"
																					},
																					{
																						"description": "Added as a part of security scheme: apikey",
																						"key": "X-App-Medium",
																						"value": "<API Key>"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						"transfer"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						}
																					]
																				}
																			},
																			"status": "Forbidden",
																			"code": 403,
																			"_postman_previewlanguage": "json",
																			"header": [
																				{
																					"key": "Content-Type",
																					"value": "application/json"
																				},
																				{
																					"key": "X-Correlation-Id",
																					"value": "",
																					"description": ""
																				}
																			],
																			"cookie": [],
																			"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																		},
																		{
																			"name": "Conflict",
																			"originalRequest": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>"
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"key": "Accept",
																						"value": "application/json"
																					},
																					{
																						"description": "Added as a part of security scheme: apikey",
																						"key": "X-App-Medium",
																						"value": "<API Key>"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						"transfer"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						}
																					]
																				}
																			},
																			"status": "Conflict",
																			"code": 409,
																			"_postman_previewlanguage": "json",
																			"header": [
																				{
																					"key": "Content-Type",
																					"value": "application/json"
																				},
																				{
																					"key": "X-Correlation-Id",
																					"value": "",
																					"description": ""
																				}
																			],
																			"cookie": [],
																			"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																		},
																		{
																			"name": "Server Error",
																			"originalRequest": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>"
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"description": "Added as a part of security scheme: apikey",
																						"key": "X-App-Medium",
																						"value": "<API Key>"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						"transfer"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						}
																					]
																				}
																			},
																			"status": "Internal Server Error",
																			"code": 500,
																			"_postman_previewlanguage": "text",
																			"header": [
																				{
																					"key": "X-Correlation-Id",
																					"value": "",
																					"description": ""
																				}
																			],
																			"cookie": [],
																			"body": ""
																		},
																		{
																			"name": "Service Unavailable",
																			"originalRequest": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>"
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"description": "Added as a part of security scheme: apikey",
																						"key": "X-App-Medium",
																						"value": "<API Key>"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/transfer",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						"transfer"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						}
																					]
																				}
																			},
																			"status": "Service Unavailable",
																			"code": 503,
																			"_postman_previewlanguage": "text",
																			"header": [
																				{
																					"key": "X-Correlation-Id",
																					"value": "",
																					"description": ""
																				}
																			],
																			"cookie": [],
																			"body": ""
																		}
																	]
																}
															]
														},
														{
															"name": "{mandateId}",
															"item": [
																{
																	"name": "cancel",
																	"item": [
																		{
																			"name": "Requests cancellation for a Direct Debit mandate",
																			"event": [
																				{
																					"listen": "test",
																					"script": {
																						"exec": [
																							"const response = pm.response;",
																							"",
																							"pm.test(\"Status code is 200\", function () {",
																							"    pm.expect(response).to.have.status(200);",
																							"});",
																							"",
																							"pm.test(\"Sub 2s response\", function () {",
																							"    pm.expect(response.responseTime).to.be.below(2000);",
																							"});"
																						],
																						"type": "text/javascript"
																					}
																				}
																			],
																			"request": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>",
																						"disabled": true
																					},
																					{
																						"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																						"key": "X-Digital-Signature",
																						"value": "<string>",
																						"disabled": true
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"key": "Accept",
																						"value": "application/json"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"reasonCode\": \"1\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						":mandateId",
																						"cancel"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						},
																						{
																							"key": "mandateId",
																							"value": "{{mandateId}}"
																						}
																					]
																				}
																			},
																			"response": [
																				{
																					"name": "Success",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "OK",
																					"code": 200,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"description\": \"An API response which contains no additional properties\"\n}"
																				},
																				{
																					"name": "Bad Request",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Bad Request",
																					"code": 400,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
																				},
																				{
																					"name": "Unauthorized",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Unauthorized",
																					"code": 401,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"message\": \"<string>\"\n}"
																				},
																				{
																					"name": "Forbidden",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Forbidden",
																					"code": 403,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																				},
																				{
																					"name": "Not Found",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Not Found",
																					"code": 404,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"message\": \"<string>\"\n}"
																				},
																				{
																					"name": "Conflict",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Conflict",
																					"code": 409,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																				},
																				{
																					"name": "Server Error",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Internal Server Error",
																					"code": 500,
																					"_postman_previewlanguage": "text",
																					"header": [
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": ""
																				},
																				{
																					"name": "Service Unavailable",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"1\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/cancel",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"cancel"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Service Unavailable",
																					"code": 503,
																					"_postman_previewlanguage": "text",
																					"header": [
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": ""
																				}
																			]
																		}
																	]
																},
																{
																	"name": "return",
																	"item": [
																		{
																			"name": "Requests return of a Direct Debit mandate",
																			"event": [
																				{
																					"listen": "test",
																					"script": {
																						"exec": [
																							"const response = pm.response;",
																							"",
																							"pm.test(\"Status code is 200\", function () {",
																							"    pm.expect(response).to.have.status(200);",
																							"});",
																							"",
																							"pm.test(\"Sub 2s response\", function () {",
																							"    pm.expect(response.responseTime).to.be.below(2000);",
																							"});"
																						],
																						"type": "text/javascript"
																					}
																				}
																			],
																			"request": {
																				"method": "POST",
																				"header": [
																					{
																						"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																						"key": "X-Correlation-Id",
																						"value": "<string>",
																						"disabled": true
																					},
																					{
																						"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																						"key": "X-Digital-Signature",
																						"value": "<string>",
																						"disabled": true
																					},
																					{
																						"key": "Content-Type",
																						"value": "application/json"
																					},
																					{
																						"key": "Accept",
																						"value": "application/json"
																					}
																				],
																				"body": {
																					"mode": "raw",
																					"raw": "{\n  \"reasonCode\": \"H\"\n}",
																					"options": {
																						"raw": {
																							"headerFamily": "json",
																							"language": "json"
																						}
																					}
																				},
																				"url": {
																					"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																					"host": [
																						"{{coreApiBaseUrl}}"
																					],
																					"path": [
																						"accounts",
																						":accountId",
																						"wallets",
																						":walletId",
																						"mandates",
																						":mandateId",
																						"return"
																					],
																					"variable": [
																						{
																							"key": "accountId",
																							"value": "{{accountId}}"
																						},
																						{
																							"key": "walletId",
																							"value": "{{walletId}}"
																						},
																						{
																							"key": "mandateId",
																							"value": "{{mandateId}}"
																						}
																					]
																				}
																			},
																			"response": [
																				{
																					"name": "Success",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "OK",
																					"code": 200,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
																				},
																				{
																					"name": "Bad Request",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Bad Request",
																					"code": 400,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
																				},
																				{
																					"name": "Unauthorized",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{baseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{baseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Unauthorized",
																					"code": 401,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"message\": \"<string>\"\n}"
																				},
																				{
																					"name": "Forbidden",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Forbidden",
																					"code": 403,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																				},
																				{
																					"name": "Not Found",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Not Found",
																					"code": 404,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"message\": \"<string>\"\n}"
																				},
																				{
																					"name": "Conflict",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"key": "Accept",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Conflict",
																					"code": 409,
																					"_postman_previewlanguage": "json",
																					"header": [
																						{
																							"key": "Content-Type",
																							"value": "application/json"
																						},
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																				},
																				{
																					"name": "Server Error",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Internal Server Error",
																					"code": 500,
																					"_postman_previewlanguage": "text",
																					"header": [
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": ""
																				},
																				{
																					"name": "Service Unavailable",
																					"originalRequest": {
																						"method": "POST",
																						"header": [
																							{
																								"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																								"key": "X-Correlation-Id",
																								"value": "<string>"
																							},
																							{
																								"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																								"key": "X-Digital-Signature",
																								"value": "<string>"
																							},
																							{
																								"key": "Content-Type",
																								"value": "application/json"
																							},
																							{
																								"description": "Added as a part of security scheme: apikey",
																								"key": "X-App-Medium",
																								"value": "<API Key>"
																							}
																						],
																						"body": {
																							"mode": "raw",
																							"raw": "{\n  \"reasonCode\": \"H\"\n}",
																							"options": {
																								"raw": {
																									"headerFamily": "json",
																									"language": "json"
																								}
																							}
																						},
																						"url": {
																							"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates/:mandateId/return",
																							"host": [
																								"{{coreApiBaseUrl}}"
																							],
																							"path": [
																								"accounts",
																								":accountId",
																								"wallets",
																								":walletId",
																								"mandates",
																								":mandateId",
																								"return"
																							],
																							"variable": [
																								{
																									"key": "accountId",
																									"value": "{{accountId}}"
																								},
																								{
																									"key": "walletId",
																									"value": "{{walletId}}"
																								},
																								{
																									"key": "mandateId",
																									"value": "{{mandateId}}"
																								}
																							]
																						}
																					},
																					"status": "Service Unavailable",
																					"code": 503,
																					"_postman_previewlanguage": "text",
																					"header": [
																						{
																							"key": "X-Correlation-Id",
																							"value": "",
																							"description": ""
																						}
																					],
																					"cookie": [],
																					"body": ""
																				}
																			]
																		}
																	]
																}
															]
														},
														{
															"name": "Gets all of the Direct Debit mandates associated with the wallet",
															"event": [
																{
																	"listen": "test",
																	"script": {
																		"exec": [
																			"const response = pm.response;",
																			"",
																			"pm.test(\"Status code is 200\", function () {",
																			"    pm.expect(response).to.have.status(200);",
																			"});",
																			"",
																			"pm.test(\"Sub 2s response\", function () {",
																			"    pm.expect(response.responseTime).to.be.below(2000);",
																			"});"
																		],
																		"type": "text/javascript"
																	}
																}
															],
															"request": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>",
																		"disabled": true
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"accounts",
																		":accountId",
																		"wallets",
																		":walletId",
																		"mandates"
																	],
																	"query": [
																		{
																			"key": "pageNumber",
																			"value": "<integer>",
																			"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																			"disabled": true
																		},
																		{
																			"key": "pageSize",
																			"value": "<integer>",
																			"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																			"disabled": true
																		},
																		{
																			"key": "state",
																			"value": "CANCELLED",
																			"description": "mandate state filter",
																			"disabled": true
																		}
																	],
																	"variable": [
																		{
																			"key": "accountId",
																			"value": "{{accountId}}"
																		},
																		{
																			"key": "walletId",
																			"value": "{{walletId}}"
																		}
																	]
																}
															},
															"response": [
																{
																	"name": "Success",
																	"originalRequest": {
																		"method": "GET",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates"
																			],
																			"query": [
																				{
																					"key": "pageNumber",
																					"value": "<integer>",
																					"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																					"disabled": true
																				},
																				{
																					"key": "pageSize",
																					"value": "<integer>",
																					"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																					"disabled": true
																				},
																				{
																					"key": "state",
																					"value": "CANCELLED",
																					"description": "mandate state filter",
																					"disabled": true
																				}
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		}
																	},
																	"status": "OK",
																	"code": 200,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"mandateId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"payerName\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"serviceUserNumber\": \"<string>\",\n      \"originatorName\": \"<string>\",\n      \"lastRequestedPayment\": {\n        \"amount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2596\"\n        },\n        \"dateUtc\": \"<dateTime>\"\n      },\n      \"state\": \"PENDING_INITIATION\",\n      \"mandateType\": \"ORIGINATION\",\n      \"createdAtUtc\": \"<dateTime>\"\n    },\n    {\n      \"mandateId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"payerName\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"serviceUserNumber\": \"<string>\",\n      \"originatorName\": \"<string>\",\n      \"lastRequestedPayment\": {\n        \"amount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"0\"\n        },\n        \"dateUtc\": \"<dateTime>\"\n      },\n      \"state\": \"CANCELLED\",\n      \"mandateType\": \"ORIGINATION\",\n      \"createdAtUtc\": \"<dateTime>\"\n    }\n  ]\n}"
																},
																{
																	"name": "Bad Request",
																	"originalRequest": {
																		"method": "GET",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates"
																			],
																			"query": [
																				{
																					"key": "pageNumber",
																					"value": "<integer>",
																					"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																					"disabled": true
																				},
																				{
																					"key": "pageSize",
																					"value": "<integer>",
																					"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																					"disabled": true
																				},
																				{
																					"key": "state",
																					"value": "CANCELLED",
																					"description": "mandate state filter",
																					"disabled": true
																				}
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		}
																	},
																	"status": "Bad Request",
																	"code": 400,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
																},
																{
																	"name": "Forbidden",
																	"originalRequest": {
																		"method": "GET",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates"
																			],
																			"query": [
																				{
																					"key": "pageNumber",
																					"value": "<integer>",
																					"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																					"disabled": true
																				},
																				{
																					"key": "pageSize",
																					"value": "<integer>",
																					"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																					"disabled": true
																				},
																				{
																					"key": "state",
																					"value": "CANCELLED",
																					"description": "mandate state filter",
																					"disabled": true
																				}
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		}
																	},
																	"status": "Forbidden",
																	"code": 403,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																},
																{
																	"name": "Conflict",
																	"originalRequest": {
																		"method": "GET",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"key": "Accept",
																				"value": "application/json"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates"
																			],
																			"query": [
																				{
																					"key": "pageNumber",
																					"value": "<integer>",
																					"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																					"disabled": true
																				},
																				{
																					"key": "pageSize",
																					"value": "<integer>",
																					"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																					"disabled": true
																				},
																				{
																					"key": "state",
																					"value": "CANCELLED",
																					"description": "mandate state filter",
																					"disabled": true
																				}
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		}
																	},
																	"status": "Conflict",
																	"code": 409,
																	"_postman_previewlanguage": "json",
																	"header": [
																		{
																			"key": "Content-Type",
																			"value": "application/json"
																		},
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
																},
																{
																	"name": "Server Error",
																	"originalRequest": {
																		"method": "GET",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates"
																			],
																			"query": [
																				{
																					"key": "pageNumber",
																					"value": "<integer>",
																					"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																					"disabled": true
																				},
																				{
																					"key": "pageSize",
																					"value": "<integer>",
																					"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																					"disabled": true
																				},
																				{
																					"key": "state",
																					"value": "CANCELLED",
																					"description": "mandate state filter",
																					"disabled": true
																				}
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		}
																	},
																	"status": "Internal Server Error",
																	"code": 500,
																	"_postman_previewlanguage": "text",
																	"header": [
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": ""
																},
																{
																	"name": "Service Unavailable",
																	"originalRequest": {
																		"method": "GET",
																		"header": [
																			{
																				"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																				"key": "X-Correlation-Id",
																				"value": "<string>"
																			},
																			{
																				"description": "Added as a part of security scheme: apikey",
																				"key": "X-App-Medium",
																				"value": "<API Key>"
																			}
																		],
																		"url": {
																			"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets/:walletId/mandates",
																			"host": [
																				"{{coreApiBaseUrl}}"
																			],
																			"path": [
																				"accounts",
																				":accountId",
																				"wallets",
																				":walletId",
																				"mandates"
																			],
																			"query": [
																				{
																					"key": "pageNumber",
																					"value": "<integer>",
																					"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																					"disabled": true
																				},
																				{
																					"key": "pageSize",
																					"value": "<integer>",
																					"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																					"disabled": true
																				},
																				{
																					"key": "state",
																					"value": "CANCELLED",
																					"description": "mandate state filter",
																					"disabled": true
																				}
																			],
																			"variable": [
																				{
																					"key": "accountId",
																					"value": "{{accountId}}"
																				},
																				{
																					"key": "walletId",
																					"value": "{{walletId}}"
																				}
																			]
																		}
																	},
																	"status": "Service Unavailable",
																	"code": 503,
																	"_postman_previewlanguage": "text",
																	"header": [
																		{
																			"key": "X-Correlation-Id",
																			"value": "",
																			"description": ""
																		}
																	],
																	"cookie": [],
																	"body": ""
																}
															]
														}
													]
												}
											]
										},
										{
											"name": "Gets all of the wallets associated with the account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    pm.environment.set(\"walletId\", responseBody.results[0].id);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"wallets"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "paymentAccountIdentifier",
															"value": "<number>",
															"description": "Filter wallets by payment account identifier number",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"wallets"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "paymentAccountIdentifier",
																	"value": "<number>",
																	"description": "Filter wallets by payment account identifier number",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"SUSPENDED_OUT\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"SECONDARY\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4769\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"65556\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\",\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"FIXED\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"WEEK\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n          \"postedPeriodType\": \"QUARTER\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"2359131288\"\n          },\n          \"postingScheduleType\": \"FIXED_SCHEDULE\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"NOVEMBER\",\n          \"postedPeriodOnDayOfWeek\": \"SATURDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"SEPTEMBER\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"SUSPENDED_OUT\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"596783105\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\",\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MATURITY\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"QUARTER\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"64649\"\n          },\n          \"postingScheduleType\": \"FIXED_SCHEDULE\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"SERVICE_ACCOUNT\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"OCTOBER\",\n          \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"MAY\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"wallets"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "paymentAccountIdentifier",
																	"value": "<number>",
																	"description": "Filter wallets by payment account identifier number",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"wallets"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "paymentAccountIdentifier",
																	"value": "<number>",
																	"description": "Filter wallets by payment account identifier number",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"wallets"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "paymentAccountIdentifier",
																	"value": "<number>",
																	"description": "Filter wallets by payment account identifier number",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"wallets"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "paymentAccountIdentifier",
																	"value": "<number>",
																	"description": "Filter wallets by payment account identifier number",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/wallets",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"wallets"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "paymentAccountIdentifier",
																	"value": "<number>",
																	"description": "Filter wallets by payment account identifier number",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "cards",
									"item": [
										{
											"name": "Gets all cards",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"cards"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "All cards are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"accountId\": \"<uuid>\",\n      \"cardProcessor\": \"GPS\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"personIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"thirdPartyRequiredFields\": {},\n      \"enabled\": \"<boolean>\"\n    },\n    {\n      \"accountId\": \"<uuid>\",\n      \"cardProcessor\": \"ACCOMPLISH\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"personIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"thirdPartyRequiredFields\": {},\n      \"enabled\": \"<boolean>\"\n    }\n  ]\n}"
												},
												{
													"name": "Unauthorized",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"_postman_previewlanguage": null,
													"header": null,
													"cookie": [],
													"body": null
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"cards"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "deposit-payment-order-settings",
									"item": [
										{
											"name": "Updates an existing account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PUT",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"10000\"\n  },\n  \"oneApprovalThresholdEnabled\": true,\n  \"twoApprovalThreshold\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"0\"\n  },\n  \"twoApprovalThresholdEnabled\": false,\n  \"threeApprovalThreshold\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"0\"\n  },\n  \"threeApprovalThresholdEnabled\": false,\n  \"restrictToWorkingDay\": false\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"deposit-payment-order-settings"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"32907942\"\n  },\n  \"oneApprovalThresholdEnabled\": \"<boolean>\",\n  \"twoApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"126\"\n  },\n  \"twoApprovalThresholdEnabled\": \"<boolean>\",\n  \"threeApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"65876300870\"\n  },\n  \"threeApprovalThresholdEnabled\": \"<boolean>\",\n  \"restrictToWorkingDay\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"32907942\"\n  },\n  \"oneApprovalThresholdEnabled\": \"<boolean>\",\n  \"twoApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"126\"\n  },\n  \"twoApprovalThresholdEnabled\": \"<boolean>\",\n  \"threeApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"65876300870\"\n  },\n  \"threeApprovalThresholdEnabled\": \"<boolean>\",\n  \"restrictToWorkingDay\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"32907942\"\n  },\n  \"oneApprovalThresholdEnabled\": \"<boolean>\",\n  \"twoApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"126\"\n  },\n  \"twoApprovalThresholdEnabled\": \"<boolean>\",\n  \"threeApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"65876300870\"\n  },\n  \"threeApprovalThresholdEnabled\": \"<boolean>\",\n  \"restrictToWorkingDay\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"32907942\"\n  },\n  \"oneApprovalThresholdEnabled\": \"<boolean>\",\n  \"twoApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"126\"\n  },\n  \"twoApprovalThresholdEnabled\": \"<boolean>\",\n  \"threeApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"65876300870\"\n  },\n  \"threeApprovalThresholdEnabled\": \"<boolean>\",\n  \"restrictToWorkingDay\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"32907942\"\n  },\n  \"oneApprovalThresholdEnabled\": \"<boolean>\",\n  \"twoApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"126\"\n  },\n  \"twoApprovalThresholdEnabled\": \"<boolean>\",\n  \"threeApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"65876300870\"\n  },\n  \"threeApprovalThresholdEnabled\": \"<boolean>\",\n  \"restrictToWorkingDay\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"oneApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"32907942\"\n  },\n  \"oneApprovalThresholdEnabled\": \"<boolean>\",\n  \"twoApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"126\"\n  },\n  \"twoApprovalThresholdEnabled\": \"<boolean>\",\n  \"threeApprovalThreshold\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"65876300870\"\n  },\n  \"threeApprovalThresholdEnabled\": \"<boolean>\",\n  \"restrictToWorkingDay\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Delete an existing account section",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "DELETE",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"deposit-payment-order-settings"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "auto-close-date",
									"item": [
										{
											"name": "Update an existing account auto close date",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PUT",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"autoCloseDateUtc\": \"2024-02-02\",\n  \"leaveAccountOpen\": false\n}",
													"options": {
														"raw": {
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/auto-close-date",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"auto-close-date"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Delete an existing account auto close date",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "DELETE",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/auto-close-date",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"auto-close-date"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-payment-order-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-payment-order-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "deposit-fixed-term-settings",
									"item": [
										{
											"name": "Updates an existing account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PUT",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"deposit-fixed-term-settings"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"minimumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"9\"\n  },\n  \"maximumBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"222\"\n  },\n  \"fundingWindowPeriodType\": \"DAY\",\n  \"fundingWindowPeriodValue\": \"<number>\",\n  \"initialDepositWindowPeriodType\": \"YEAR\",\n  \"initialDepositWindowPeriodValue\": \"<number>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Delete an existing account section",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "DELETE",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"deposit-fixed-term-settings"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "<uuid>"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "deposit-fixed-term-maturity-settings",
									"item": [
										{
											"name": "Updates an existing account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PUT",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"deposit-fixed-term-maturity-settings"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "PUT",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"maturityWindowPeriodType\": \"WEEK\",\n  \"maturityWindowPeriodValue\": \"<number>\",\n  \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n  \"maturityAction1Type\": \"WITHDRAWAL\",\n  \"maturityAction1ProductId\": \"<uuid>\",\n  \"maturityAction1ProductIssueId\": \"<uuid>\",\n  \"maturityAction1Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"50787018716\"\n  },\n  \"maturityAction2Type\": \"WITHDRAWAL\",\n  \"maturityAction2ProductId\": \"<uuid>\",\n  \"maturityAction2ProductIssueId\": \"<uuid>\",\n  \"maturityAction2Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"12046641992\"\n  },\n  \"maturityAction3Type\": \"WITHDRAWAL\",\n  \"maturityAction3ProductId\": \"<uuid>\",\n  \"maturityAction3ProductIssueId\": \"<uuid>\",\n  \"maturityAction3Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"45236092\"\n  },\n  \"maturityAction4Type\": \"REINVEST\",\n  \"maturityAction4ProductId\": \"<uuid>\",\n  \"maturityAction4ProductIssueId\": \"<uuid>\",\n  \"maturityAction4Amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"3348035839\"\n  }\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Delete an existing account section",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "DELETE",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"deposit-fixed-term-maturity-settings"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/deposit-fixed-term-maturity-settings",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"deposit-fixed-term-maturity-settings"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "payment-orders",
									"item": [
										{
											"name": "Retreive payments orders for an account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"payment-orders"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
															"disabled": true
														},
														{
															"key": "state",
															"value": "USER_CANCELLED",
															"disabled": true
														},
														{
															"key": "bulk",
															"value": "false",
															"disabled": true
														},
														{
															"key": "scheduled",
															"value": "false",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "Retreive scheduled payment orders using the account id."
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"accountType\": \"CUSTOMER\",\n      \"accountId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"walletIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"09\"\n      },\n      \"name\": \"<string>\",\n      \"scheme\": \"FPS\",\n      \"customerAddress\": {\n        \"addressLine1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"country\": \"JO\",\n        \"postCode\": \"<string>\",\n        \"id\": \"<uuid>\",\n        \"addressLine2\": \"<string>\",\n        \"county\": \"<string>\",\n        \"type\": \"<string>\",\n        \"fromDate\": \"1208-37-69\",\n        \"toDate\": \"9064-51-10\",\n        \"personId\": \"<string>\",\n        \"organisationId\": \"<string>\"\n      },\n      \"scheduled\": \"<boolean>\",\n      \"bulk\": \"<boolean>\",\n      \"schedule\": {\n        \"frequency\": \"WEEKLY\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"metadata\": {},\n      \"state\": \"USER_CANCELLED\",\n      \"createdBy\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"payments\": [\n        {\n          \"id\": \"<uuid>\",\n          \"createdAtUtc\": \"<dateTime>\",\n          \"updatedAtUtc\": \"<dateTime>\",\n          \"paymentOrderId\": \"<uuid>\",\n          \"accountId\": \"<uuid>\",\n          \"walletId\": \"<uuid>\",\n          \"accountIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"USER\"\n          },\n          \"amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"022306085\"\n          },\n          \"reference\": \"/\",\n          \"scheme\": \"SIC\",\n          \"schedule\": {\n            \"frequency\": \"ONCE\",\n            \"startDate\": \"<date>\",\n            \"type\": \"SIMPLE_FREQUENCY\",\n            \"endDate\": \"<date>\"\n          },\n          \"subTransactionType\": \"<string>\",\n          \"metadata\": {},\n          \"state\": \"FAILED\",\n          \"payeeId\": \"<uuid>\",\n          \"payeeIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"USER\"\n          },\n          \"payee\": {\n            \"name\": \"<string>\",\n            \"accountNumber\": \"<string>\",\n            \"sortCode\": \"<string>\",\n            \"iban\": \"<string>\",\n            \"payeeType\": \"UK\",\n            \"addressLine1\": \"<string>\",\n            \"addressLine2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"county\": \"<string>\",\n            \"postCode\": \"<string>\",\n            \"country\": \"SE\"\n          },\n          \"transactionMonitoring\": {\n            \"transactionMonitoringMetadata\": \"<string>\",\n            \"transactionMonitoringProvider\": \"CLEARBANK\"\n          }\n        },\n        {\n          \"id\": \"<uuid>\",\n          \"createdAtUtc\": \"<dateTime>\",\n          \"updatedAtUtc\": \"<dateTime>\",\n          \"paymentOrderId\": \"<uuid>\",\n          \"accountId\": \"<uuid>\",\n          \"walletId\": \"<uuid>\",\n          \"accountIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"CARD\"\n          },\n          \"amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"2359299\"\n          },\n          \"reference\": \" \",\n          \"scheme\": \"CHAPS\",\n          \"schedule\": {\n            \"frequency\": \"ANNUALLY\",\n            \"startDate\": \"<date>\",\n            \"type\": \"SIMPLE_FREQUENCY\",\n            \"endDate\": \"<date>\"\n          },\n          \"subTransactionType\": \"<string>\",\n          \"metadata\": {},\n          \"state\": \"SUBMITTED\",\n          \"payeeId\": \"<uuid>\",\n          \"payeeIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"INSTITUTIONAL_USER\"\n          },\n          \"payee\": {\n            \"name\": \"<string>\",\n            \"accountNumber\": \"<string>\",\n            \"sortCode\": \"<string>\",\n            \"iban\": \"<string>\",\n            \"payeeType\": \"UK\",\n            \"addressLine1\": \"<string>\",\n            \"addressLine2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"county\": \"<string>\",\n            \"postCode\": \"<string>\",\n            \"country\": \"IO\"\n          },\n          \"transactionMonitoring\": {\n            \"transactionMonitoringMetadata\": \"<string>\",\n            \"transactionMonitoringProvider\": \"SWISSCOM\"\n          }\n        }\n      ],\n      \"feeState\": \"FEE_PAID\",\n      \"feeAmount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3716320577\"\n      },\n      \"feeId\": \"<uuid>\",\n      \"expiresAtUtc\": \"<dateTime>\",\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"approvalsRequired\": \"<number>\",\n      \"approval1By\": \"<uuid>\",\n      \"approval1ByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"approval1AtUtc\": \"<dateTime>\",\n      \"approval2By\": \"<uuid>\",\n      \"approval2ByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"approval2AtUtc\": \"<dateTime>\",\n      \"approval3By\": \"<uuid>\",\n      \"approval3ByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"approval3AtUtc\": \"<dateTime>\",\n      \"rejectedBy\": \"<uuid>\",\n      \"rejectedByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n      },\n      \"rejectedAtUtc\": \"<dateTime>\",\n      \"rejectedReason\": \"<string>\",\n      \"cancelledAtUtc\": \"<dateTime>\",\n      \"cancelledReason\": \"<string>\",\n      \"submittedAtUtc\": \"<dateTime>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"accountType\": \"CUSTOMER\",\n      \"accountId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ORGANISATION\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"walletIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ORGANISATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"359210863\"\n      },\n      \"name\": \"<string>\",\n      \"scheme\": \"SIC\",\n      \"customerAddress\": {\n        \"addressLine1\": \"<string>\",\n        \"city\": \"<string>\",\n        \"country\": \"BI\",\n        \"postCode\": \"<string>\",\n        \"id\": \"<uuid>\",\n        \"addressLine2\": \"<string>\",\n        \"county\": \"<string>\",\n        \"type\": \"<string>\",\n        \"fromDate\": \"7270-96-17\",\n        \"toDate\": \"4494-92-01\",\n        \"personId\": \"<string>\",\n        \"organisationId\": \"<string>\"\n      },\n      \"scheduled\": \"<boolean>\",\n      \"bulk\": \"<boolean>\",\n      \"schedule\": {\n        \"frequency\": \"ANNUALLY\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"metadata\": {},\n      \"state\": \"EXPIRED\",\n      \"createdBy\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"payments\": [\n        {\n          \"id\": \"<uuid>\",\n          \"createdAtUtc\": \"<dateTime>\",\n          \"updatedAtUtc\": \"<dateTime>\",\n          \"paymentOrderId\": \"<uuid>\",\n          \"accountId\": \"<uuid>\",\n          \"walletId\": \"<uuid>\",\n          \"accountIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"CARD\"\n          },\n          \"amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"824\"\n          },\n          \"reference\": \"04)8H qH﻿\",\n          \"scheme\": \"SIC\",\n          \"schedule\": {\n            \"frequency\": \"WEEKLY\",\n            \"startDate\": \"<date>\",\n            \"type\": \"SIMPLE_FREQUENCY\",\n            \"endDate\": \"<date>\"\n          },\n          \"subTransactionType\": \"<string>\",\n          \"metadata\": {},\n          \"state\": \"COMPLETED\",\n          \"payeeId\": \"<uuid>\",\n          \"payeeIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"PRODUCT_ISSUE\"\n          },\n          \"payee\": {\n            \"name\": \"<string>\",\n            \"accountNumber\": \"<string>\",\n            \"sortCode\": \"<string>\",\n            \"iban\": \"<string>\",\n            \"payeeType\": \"IBAN\",\n            \"addressLine1\": \"<string>\",\n            \"addressLine2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"county\": \"<string>\",\n            \"postCode\": \"<string>\",\n            \"country\": \"SD\"\n          },\n          \"transactionMonitoring\": {\n            \"transactionMonitoringMetadata\": \"<string>\",\n            \"transactionMonitoringProvider\": \"SWISSCOM\"\n          }\n        },\n        {\n          \"id\": \"<uuid>\",\n          \"createdAtUtc\": \"<dateTime>\",\n          \"updatedAtUtc\": \"<dateTime>\",\n          \"paymentOrderId\": \"<uuid>\",\n          \"accountId\": \"<uuid>\",\n          \"walletId\": \"<uuid>\",\n          \"accountIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n          },\n          \"amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"010660796\"\n          },\n          \"reference\": \"wd{7\",\n          \"scheme\": \"FPS\",\n          \"schedule\": {\n            \"frequency\": \"WEEKLY\",\n            \"startDate\": \"<date>\",\n            \"type\": \"SIMPLE_FREQUENCY\",\n            \"endDate\": \"<date>\"\n          },\n          \"subTransactionType\": \"<string>\",\n          \"metadata\": {},\n          \"state\": \"PENDING_APPROVAL\",\n          \"payeeId\": \"<uuid>\",\n          \"payeeIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"PRODUCT_ISSUE\"\n          },\n          \"payee\": {\n            \"name\": \"<string>\",\n            \"accountNumber\": \"<string>\",\n            \"sortCode\": \"<string>\",\n            \"iban\": \"<string>\",\n            \"payeeType\": \"UK\",\n            \"addressLine1\": \"<string>\",\n            \"addressLine2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"county\": \"<string>\",\n            \"postCode\": \"<string>\",\n            \"country\": \"TR\"\n          },\n          \"transactionMonitoring\": {\n            \"transactionMonitoringMetadata\": \"<string>\",\n            \"transactionMonitoringProvider\": \"CLEARBANK\"\n          }\n        }\n      ],\n      \"feeState\": \"FEE_PENDING\",\n      \"feeAmount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"297662\"\n      },\n      \"feeId\": \"<uuid>\",\n      \"expiresAtUtc\": \"<dateTime>\",\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"approvalsRequired\": \"<number>\",\n      \"approval1By\": \"<uuid>\",\n      \"approval1ByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"approval1AtUtc\": \"<dateTime>\",\n      \"approval2By\": \"<uuid>\",\n      \"approval2ByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"approval2AtUtc\": \"<dateTime>\",\n      \"approval3By\": \"<uuid>\",\n      \"approval3ByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"approval3AtUtc\": \"<dateTime>\",\n      \"rejectedBy\": \"<uuid>\",\n      \"rejectedByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"rejectedAtUtc\": \"<dateTime>\",\n      \"rejectedReason\": \"<string>\",\n      \"cancelledAtUtc\": \"<dateTime>\",\n      \"cancelledReason\": \"<string>\",\n      \"submittedAtUtc\": \"<dateTime>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payment-orders",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payment-orders"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "USER_CANCELLED",
																	"disabled": true
																},
																{
																	"key": "bulk",
																	"value": "false",
																	"disabled": true
																},
																{
																	"key": "scheduled",
																	"value": "false",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "payments",
									"item": [
										{
											"name": "Retreive scheduled payments for an account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    if (responseBody.results.length > 0) {",
															"        pm.environment.set(\"paymentId\", responseBody.results[0].id);",
															"    }",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments?state=ACCEPTED",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"payments"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
															"disabled": true
														},
														{
															"key": "state",
															"value": "ACCEPTED",
															"description": "(Required) "
														}
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "Retreive scheduled payments using the account id."
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"reference\": \"&>\",\n      \"scheme\": \"FPS\",\n      \"schedule\": {\n        \"frequency\": \"MONTHLY\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"AL\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4516301499\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"CHAPS\",\n      \"schedule\": {\n        \"frequency\": \"MONTHLY\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"SR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"SWISSCOM\"\n      }\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Delete all pending payments for an account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"payments"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "Delete all pending payments for an account using the account id."
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"deleted\": \"<number>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"payments"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "import-state",
									"item": [
										{
											"name": "Imports state on to an acount (currently exclusively FTD accounts)",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId",
														"import-state"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												},
												"description": "To be used when migrating accounts from a third party system. This endpoint accepts the account Id of a previously created account, and imports state such as balance, interest accrued and account values. Currently only allows FTD accounts with a zero balance, and account must be created with \"imported\" flag as true. When accrual figures provided, these will be treated as the accrual amount on the previous end of day balance."
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "PATCH",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6577908\"\n  },\n  \"walletId\": \"<string>\",\n  \"accrual\": \"<number>\",\n  \"accrualDecimal\": \"<number>\",\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<date>\"\n    }\n  },\n  \"transactionReference\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/accounts/:accountId/import-state",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"accounts",
																":accountId",
																"import-state"
															],
															"variable": [
																{
																	"key": "accountId",
																	"value": "{{accountId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Gets a detailed view of an account",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts",
												":accountId"
											],
											"variable": [
												{
													"key": "accountId",
													"value": "{{accountId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Amends an account, enabled or disable an account using this endpoint or amend the account name with the specified name",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"{{productId}}\",\n  \"enabled\": true,\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts",
												":accountId"
											],
											"variable": [
												{
													"key": "accountId",
													"value": "{{accountId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"<uuid>\",\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"<uuid>\",\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"<uuid>\",\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"<uuid>\",\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"<uuid>\",\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"zm\",\n  \"productId\": \"<uuid>\",\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"yU'l\",\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"metadata\": {},\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"DEPOSIT\",\n      \"subType\": \"DEPOSIT_NOTICE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"37\"\n      },\n      \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"32854\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"501\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"YEAR\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"WEEK\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1987559\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"MARCH\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"FEBRUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58200356\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"276\"\n      },\n      \"fundingWindowPeriodType\": \"YEAR\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"374\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97356725694\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"DAY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6\"\n      },\n      \"maturityAction2Type\": \"WITHDRAWAL\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4308791\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"39\"\n      },\n      \"maturityAction4Type\": \"REINVEST\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n            \"postedPeriodType\": \"MONTH\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"221788\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"FEBRUARY\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"AUGUST\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        },\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\",\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"30840454\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"SERVICE_ACCOUNT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JUNE\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"MARCH\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"41667\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"24435259732\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9716166537\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"QUARTER\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/accounts/:accountId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"accounts",
														":accountId"
													],
													"variable": [
														{
															"key": "accountId",
															"value": "{{accountId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Gets all accounts associated with your institution",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/accounts?productType=DEPOSIT",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"accounts"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
											"disabled": true
										},
										{
											"key": "productId",
											"value": "{{productId}}",
											"description": "Filter accounts by productId",
											"disabled": true
										},
										{
											"key": "productIssueId",
											"value": "{{productIssueId}}",
											"description": "Filter accounts by productIssueId",
											"disabled": true
										},
										{
											"key": "origin",
											"value": "FIAPI",
											"description": "Filter accounts by origin",
											"disabled": true
										},
										{
											"key": "paymentAccountIdentifier",
											"value": "<string>",
											"description": "Filter accounts by payment account identifier",
											"disabled": true
										},
										{
											"key": "customerName",
											"value": "<string>",
											"description": "Filter accounts by customer name",
											"disabled": true
										},
										{
											"key": "name",
											"value": "<string>",
											"description": "Filter accounts by account name",
											"disabled": true
										},
										{
											"key": "customerId",
											"value": "<string>",
											"description": "Filter accounts by customer id",
											"disabled": true
										},
										{
											"key": "reviewDateUtc",
											"value": "<string>",
											"description": "Filter accounts by review date",
											"disabled": true
										},
										{
											"key": "productType",
											"value": "DEPOSIT",
											"description": "Filter accounts by product type"
										}
									]
								},
								"description": "All accounts are returned except those which have been disabled or where the account is a virtual account"
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts?productType=DEPOSIT",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "productId",
													"value": "{{productId}}",
													"description": "Filter accounts by productId",
													"disabled": true
												},
												{
													"key": "productIssueId",
													"value": "{{productIssueId}}",
													"description": "Filter accounts by productIssueId",
													"disabled": true
												},
												{
													"key": "origin",
													"value": "FIAPI",
													"description": "Filter accounts by origin",
													"disabled": true
												},
												{
													"key": "paymentAccountIdentifier",
													"value": "<string>",
													"description": "Filter accounts by payment account identifier",
													"disabled": true
												},
												{
													"key": "customerName",
													"value": "<string>",
													"description": "Filter accounts by customer name",
													"disabled": true
												},
												{
													"key": "name",
													"value": "<string>",
													"description": "Filter accounts by account name",
													"disabled": true
												},
												{
													"key": "customerId",
													"value": "<string>",
													"description": "Filter accounts by customer id",
													"disabled": true
												},
												{
													"key": "reviewDateUtc",
													"value": "<string>",
													"description": "Filter accounts by review date",
													"disabled": true
												},
												{
													"key": "productType",
													"value": "DEPOSIT",
													"description": "Filter accounts by product type"
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"productIssueId\": \"<uuid>\",\n      \"state\": \"SUSPENDED_OUT\",\n      \"productIssue\": {\n        \"generalSettings\": {\n          \"name\": \"<string>\",\n          \"description\": \"<string>\",\n          \"type\": \"LENDING\",\n          \"subType\": \"LENDING_FIXED_TERM\",\n          \"defaultWalletCurrency\": \"GBP\",\n          \"code\": \"<string>\",\n          \"targetCustomerType\": \"COMMERCIAL\",\n          \"legacyId\": \"<string>\",\n          \"imported\": \"<boolean>\"\n        },\n        \"id\": \"<uuid>\",\n        \"name\": \"<string>\",\n        \"state\": \"PUBLISHED\",\n        \"issueNumber\": \"<number>\",\n        \"imported\": \"<boolean>\",\n        \"legacyId\": \"<string>\",\n        \"metadata\": {},\n        \"productId\": \"<uuid>\",\n        \"productIdentifier\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"CARD\"\n        },\n        \"secondaryWalletSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"secondaryWalletTypes\": [\n            {\n              \"id\": \"<string>\",\n              \"generalSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"code\": \"<string>\",\n                \"name\": \"<string>\",\n                \"allowedCurrencies\": [\n                  \"GBP\"\n                ]\n              },\n              \"depositInterestSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"rateType\": \"VARIABLE\",\n                \"rateValue\": \"<number>\",\n                \"accruedPeriodType\": \"QUARTER\",\n                \"accruedPeriodValue\": \"<number>\",\n                \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n                \"postedPeriodType\": \"MATURITY\",\n                \"postedPeriodValue\": \"<number>\",\n                \"daysInYearType\": \"ACTUAL_365\",\n                \"nonWorkingDaysType\": \"<string>\",\n                \"interestBearingThreshold\": {\n                  \"currency\": \"<string>\",\n                  \"amount\": \"0528369717\"\n                },\n                \"postingScheduleType\": \"FIXED_SCHEDULE\",\n                \"rateSourceId\": \"<string>\",\n                \"rateSourceIdentifier\": {\n                  \"entityId\": \"<string>\",\n                  \"entityName\": \"<string>\",\n                  \"entityType\": \"MIGRATION\"\n                },\n                \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n                \"accruedPeriodOnDayOfMonth\": \"<number>\",\n                \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n                \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n                \"postedPeriodOnDayOfMonth\": \"<number>\",\n                \"postedPeriodOnMonth\": \"MAY\",\n                \"cumulativeRateValue\": \"<number>\"\n              }\n            }\n          ]\n        },\n        \"generalPayeeSettings\": {\n          \"restrictNumberOfPayees\": \"<boolean>\",\n          \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"maximumNumberOfPayees\": \"<number>\",\n          \"overridable\": \"<boolean>\"\n        },\n        \"depositCardSettings\": {\n          \"overridable\": \"<boolean>\"\n        },\n        \"depositBankSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n          \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n          \"chapsInboundEnabled\": \"<boolean>\",\n          \"chapsOutboundEnabled\": \"<boolean>\",\n          \"directDebitsEnabled\": \"<boolean>\",\n          \"directCreditsEnabled\": \"<boolean>\",\n          \"bacsInboundEnabled\": \"<boolean>\",\n          \"bacsOutboundEnabled\": \"<boolean>\"\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"MONTH\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_365\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"53701\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n          \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"DECEMBER\",\n          \"cumulativeRateValue\": \"<number>\"\n        },\n        \"depositOverdraftSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"hardLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"8112153575\"\n          },\n          \"softLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"4947189\"\n          },\n          \"reviewPeriodType\": \"WEEK\",\n          \"reviewPeriodValue\": \"<number>\"\n        },\n        \"depositOverdraftInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"FIXED\",\n          \"accruedPeriodType\": \"WEEK\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"YEAR\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_365\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"628702\"\n          },\n          \"rateValue\": \"<number>\",\n          \"rateSourceId\": \"<string>\",\n          \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"MAY\",\n          \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"AUGUST\"\n        },\n        \"depositFixedTermSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"termPeriodType\": \"MONTH\",\n          \"termPeriodValue\": \"<number>\",\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0543\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"052187\"\n          },\n          \"fundingWindowPeriodType\": \"WEEK\",\n          \"fundingWindowPeriodValue\": \"<number>\",\n          \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\",\n          \"initialDepositWindowPeriodType\": \"YEAR\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"cumulativeRateValue\": \"<number>\"\n        },\n        \"depositInstantAccessSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"39\"\n          },\n          \"initialDepositWindowPeriodType\": \"MATURITY\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"fundingWindowPeriodType\": \"QUARTER\",\n          \"fundingWindowPeriodValue\": \"<number>\",\n          \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n        },\n        \"depositFixedTermMaturitySettings\": {\n          \"overridable\": \"<boolean>\",\n          \"maturityType\": \"REINVEST_FULL_BALANCE\",\n          \"maturityWindowPeriodType\": \"WEEK\",\n          \"maturityWindowPeriodValue\": \"<number>\",\n          \"maturityAction1Type\": \"WITHDRAWAL\",\n          \"maturityAction1ProductId\": \"<uuid>\",\n          \"maturityAction1Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"PAYMENT\"\n          }\n        },\n        \"depositPaymentOrderSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"oneApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"665761\"\n          },\n          \"oneApprovalThresholdEnabled\": \"<boolean>\",\n          \"twoApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"81032365304\"\n          },\n          \"twoApprovalThresholdEnabled\": \"<boolean>\",\n          \"threeApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"352524\"\n          },\n          \"threeApprovalThresholdEnabled\": \"<boolean>\",\n          \"restrictToWorkingDay\": \"<boolean>\"\n        },\n        \"depositCoolingOffSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"coolingOffPeriodType\": \"MATURITY\",\n          \"coolingOffPeriodValue\": \"<number>\"\n        }\n      },\n      \"productSubType\": \"<string>\",\n      \"productType\": \"<string>\",\n      \"type\": \"INSTITUTION\",\n      \"defaultWalletId\": \"<string>\",\n      \"defaultCurrency\": \"GBP\",\n      \"availableBalance\": {\n        \"default\": \"SBD\",\n        \"laboris_8a8\": \"<string>\",\n        \"dolor_b\": \"<string>\",\n        \"Ute8\": \"<string>\",\n        \"nulla_b\": \"<string>\"\n      },\n      \"balance\": {\n        \"default\": \"XDR\",\n        \"Duis__a9\": \"<string>\"\n      },\n      \"enabled\": \"<boolean>\",\n      \"customerId\": \"7Y&)a\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"nextMigrationId\": \"<uuid>\",\n      \"nextMigrationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ASSOCIATION\"\n      },\n      \"migrationStatus\": \"COMPLETE\",\n      \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n      \"lastSuccessfulMigrationId\": \"<uuid>\",\n      \"lastSuccessfulMigrationIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"accountSettings\": {\n        \"generalSettings\": {\n          \"name\": \"<string>\",\n          \"description\": \"<string>\",\n          \"type\": \"DEPOSIT\",\n          \"subType\": \"DEPOSIT_INSTANT_ACCESS\",\n          \"defaultWalletCurrency\": \"GBP\",\n          \"code\": \"<string>\",\n          \"targetCustomerType\": \"RETAIL\",\n          \"legacyId\": \"<string>\",\n          \"imported\": \"<boolean>\"\n        },\n        \"generalPayeeSettings\": {\n          \"restrictNumberOfPayees\": \"<boolean>\",\n          \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n          \"maximumNumberOfPayees\": \"<number>\",\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\"\n        },\n        \"depositCardSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\"\n        },\n        \"depositBankSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n          \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n          \"chapsInboundEnabled\": \"<boolean>\",\n          \"chapsOutboundEnabled\": \"<boolean>\",\n          \"directDebitsEnabled\": \"<boolean>\",\n          \"directCreditsEnabled\": \"<boolean>\",\n          \"bacsInboundEnabled\": \"<boolean>\",\n          \"bacsOutboundEnabled\": \"<boolean>\",\n          \"overridden\": \"<boolean>\"\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"accruedPeriodType\": \"YEAR\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n          \"postedPeriodType\": \"YEAR\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"5600160\"\n          },\n          \"postingScheduleType\": \"FIXED_SCHEDULE\",\n          \"overridden\": \"<boolean>\",\n          \"rateValue\": \"<number>\",\n          \"cumulativeRateValue\": \"<number>\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"CARD\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"JUNE\",\n          \"postedPeriodOnDayOfWeek\": \"FRIDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"FEBRUARY\"\n        },\n        \"depositOverdraftSettings\": {\n          \"enabled\": \"<boolean>\",\n          \"hardLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0487\"\n          },\n          \"softLimit\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"44533997\"\n          },\n          \"overridden\": \"<boolean>\",\n          \"overridable\": \"<boolean>\",\n          \"reviewPeriodType\": \"WEEK\",\n          \"reviewPeriodValue\": \"<number>\"\n        },\n        \"depositOverdraftInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"FIXED\",\n          \"accruedPeriodType\": \"MATURITY\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n          \"postedPeriodType\": \"MATURITY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"2444553729\"\n          },\n          \"overridden\": \"<boolean>\",\n          \"rateValue\": \"<number>\",\n          \"cumulativeRateValue\": \"<number>\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ASSOCIATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"JUNE\",\n          \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"APRIL\"\n        },\n        \"depositFixedTermSettings\": {\n          \"termPeriodType\": \"DAY\",\n          \"termPeriodValue\": \"<number>\",\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"262705688\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"758448\"\n          },\n          \"fundingWindowPeriodType\": \"QUARTER\",\n          \"fundingWindowPeriodValue\": \"<number>\",\n          \"initialDepositWindowPeriodType\": \"QUARTER\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"overridden\": \"<boolean>\",\n          \"overridable\": \"<boolean>\"\n        },\n        \"depositInstantAccessSettings\": {\n          \"minimumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"0165564\"\n          },\n          \"maximumBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"5072326\"\n          },\n          \"initialDepositWindowPeriodType\": \"MATURITY\",\n          \"initialDepositWindowPeriodValue\": \"<number>\",\n          \"fundingWindowPeriodType\": \"MONTH\",\n          \"fundingWindowPeriodValue\": \"<number>\"\n        },\n        \"depositFixedTermMaturitySettings\": {\n          \"overridden\": \"<boolean>\",\n          \"overridable\": \"<boolean>\",\n          \"maturityWindowPeriodType\": \"QUARTER\",\n          \"maturityWindowPeriodValue\": \"<number>\",\n          \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n          \"maturityAction1Type\": \"WITHDRAWAL\",\n          \"maturityAction1ProductId\": \"<uuid>\",\n          \"maturityAction1ProductIssueId\": \"<uuid>\",\n          \"maturityAction1Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"USER\"\n          },\n          \"maturityAction1ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ADDRESS\"\n          },\n          \"maturityAction1Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"4381650\"\n          },\n          \"maturityAction2Type\": \"REINVEST\",\n          \"maturityAction2ProductId\": \"<uuid>\",\n          \"maturityAction2ProductIssueId\": \"<uuid>\",\n          \"maturityAction2Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ADDRESS\"\n          },\n          \"maturityAction2ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"PRODUCT\"\n          },\n          \"maturityAction2Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"9705600502\"\n          },\n          \"maturityAction3Type\": \"REINVEST\",\n          \"maturityAction3ProductId\": \"<uuid>\",\n          \"maturityAction3ProductIssueId\": \"<uuid>\",\n          \"maturityAction3Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"CARD\"\n          },\n          \"maturityAction3ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"SERVICE_ACCOUNT\"\n          },\n          \"maturityAction3Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"63\"\n          },\n          \"maturityAction4Type\": \"WITHDRAWAL\",\n          \"maturityAction4ProductId\": \"<uuid>\",\n          \"maturityAction4ProductIssueId\": \"<uuid>\",\n          \"maturityAction4Product\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ASSOCIATION\"\n          },\n          \"maturityAction4ProductIssue\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"RATE_SOURCE\"\n          },\n          \"maturityAction4Amount\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"228\"\n          }\n        },\n        \"secondaryWalletSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\",\n          \"secondaryWalletTypes\": [\n            {\n              \"id\": \"<string>\",\n              \"generalSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"code\": \"<string>\",\n                \"name\": \"<string>\",\n                \"allowedCurrencies\": [\n                  \"GBP\"\n                ]\n              },\n              \"depositInterestSettings\": {\n                \"overridable\": \"<boolean>\",\n                \"enabled\": \"<boolean>\",\n                \"rateType\": \"VARIABLE\",\n                \"rateValue\": \"<number>\",\n                \"accruedPeriodType\": \"MATURITY\",\n                \"accruedPeriodValue\": \"<number>\",\n                \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n                \"postedPeriodType\": \"DAY\",\n                \"postedPeriodValue\": \"<number>\",\n                \"daysInYearType\": \"ACTUAL_365\",\n                \"nonWorkingDaysType\": \"<string>\",\n                \"interestBearingThreshold\": {\n                  \"currency\": \"<string>\",\n                  \"amount\": \"397181\"\n                },\n                \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n                \"rateSourceId\": \"<string>\",\n                \"rateSourceIdentifier\": {\n                  \"entityId\": \"<string>\",\n                  \"entityName\": \"<string>\",\n                  \"entityType\": \"PERSON\"\n                },\n                \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n                \"accruedPeriodOnDayOfMonth\": \"<number>\",\n                \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n                \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n                \"postedPeriodOnDayOfMonth\": \"<number>\",\n                \"postedPeriodOnMonth\": \"JANUARY\",\n                \"cumulativeRateValue\": \"<number>\"\n              }\n            }\n          ]\n        },\n        \"depositPaymentOrderSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"overridden\": \"<boolean>\",\n          \"oneApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"52113\"\n          },\n          \"oneApprovalThresholdEnabled\": \"<boolean>\",\n          \"twoApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"19483516\"\n          },\n          \"twoApprovalThresholdEnabled\": \"<boolean>\",\n          \"threeApprovalThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"9670327616\"\n          },\n          \"threeApprovalThresholdEnabled\": \"<boolean>\",\n          \"restrictToWorkingDay\": \"<boolean>\"\n        },\n        \"depositCoolingOffSettings\": {\n          \"enabled\": \"<boolean>\",\n          \"coolingOffPeriodType\": \"QUARTER\",\n          \"coolingOffPeriodValue\": \"<number>\"\n        }\n      },\n      \"accountValues\": {\n        \"depositFixedTermValues\": {\n          \"fundingWindowStartDateUtc\": \"<dateTime>\",\n          \"fundingWindowEndDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n        },\n        \"depositFixedTermMaturityValues\": {\n          \"maturityDateUtc\": \"<dateTime>\",\n          \"maturityCalendarDateUtc\": \"<dateTime>\",\n          \"maturityWindowStartDateUtc\": \"<dateTime>\",\n          \"maturityBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"65531\"\n          }\n        },\n        \"depositValues\": {\n          \"fundingWindowStartDateUtc\": \"<dateTime>\",\n          \"fundingWindowEndDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n          \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n        },\n        \"depositCoolingOffValues\": {\n          \"coolingOffStartDateUtc\": \"<dateTime>\",\n          \"coolingOffEndDateUtc\": \"<dateTime>\"\n        }\n      },\n      \"wallets\": [\n        {\n          \"id\": \"<uuid>\",\n          \"name\": \"<string>\",\n          \"state\": \"ACTIVE\",\n          \"secondaryWalletTypeCode\": \"<string>\",\n          \"type\": \"SECONDARY\",\n          \"currency\": \"GBP\",\n          \"availableBalance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"59850619\"\n          },\n          \"balance\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"045201971\"\n          },\n          \"createdAt\": \"<dateTime>\",\n          \"createdAtUtc\": \"<dateTime>\",\n          \"updatedAt\": \"<dateTime>\",\n          \"updatedAtUtc\": \"<dateTime>\",\n          \"default\": \"<boolean>\",\n          \"walletSettings\": {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"FIXED\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"MATURITY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"YEAR\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_365\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"1\"\n              },\n              \"postingScheduleType\": \"FIXED_SCHEDULE\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"PRODUCT_ISSUE\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"MAY\",\n              \"postedPeriodOnDayOfWeek\": \"SATURDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"AUGUST\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          }\n        }\n      ],\n      \"inboundOverrideTransactionReference\": \"<string>\",\n      \"outboundOverrideTransactionReference\": \"<string>\",\n      \"accountStateReasonCode\": \"FTD_MATURED\",\n      \"accountStateReasonDescription\": \"<string>\",\n      \"imported\": \"<boolean>\",\n      \"legacyId\": \"<string>\",\n      \"productIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"productIssueIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"paymentInterfaces\": [\n        {\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\",\n          \"iban\": \"<string>\",\n          \"bic\": \"<string>\",\n          \"redirecionAccount\": {\n            \"name\": \"<string>\",\n            \"identification\": {\n              \"iban\": \"<string>\",\n              \"bban\": \"<string>\",\n              \"accountNumber\": \"<string>\",\n              \"sortCode\": \"<string>\"\n            }\n          }\n        }\n      ],\n      \"metadata\": {}\n    }\n  ],\n  \"accounts\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"state\": \"SUSPENDED_OUT\",\n      \"type\": \"CUSTOMER\",\n      \"defaultWalletId\": \"<string>\",\n      \"defaultCurrency\": \"GBP\",\n      \"enabled\": \"<boolean>\",\n      \"createdAt\": \"<integer>\",\n      \"customerId\": \"<string>\"\n    }\n  ]\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts?productType=DEPOSIT",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "productId",
													"value": "{{productId}}",
													"description": "Filter accounts by productId",
													"disabled": true
												},
												{
													"key": "productIssueId",
													"value": "{{productIssueId}}",
													"description": "Filter accounts by productIssueId",
													"disabled": true
												},
												{
													"key": "origin",
													"value": "FIAPI",
													"description": "Filter accounts by origin",
													"disabled": true
												},
												{
													"key": "paymentAccountIdentifier",
													"value": "<string>",
													"description": "Filter accounts by payment account identifier",
													"disabled": true
												},
												{
													"key": "customerName",
													"value": "<string>",
													"description": "Filter accounts by customer name",
													"disabled": true
												},
												{
													"key": "name",
													"value": "<string>",
													"description": "Filter accounts by account name",
													"disabled": true
												},
												{
													"key": "customerId",
													"value": "<string>",
													"description": "Filter accounts by customer id",
													"disabled": true
												},
												{
													"key": "reviewDateUtc",
													"value": "<string>",
													"description": "Filter accounts by review date",
													"disabled": true
												},
												{
													"key": "productType",
													"value": "DEPOSIT",
													"description": "Filter accounts by product type"
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts?productType=DEPOSIT",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "productId",
													"value": "{{productId}}",
													"description": "Filter accounts by productId",
													"disabled": true
												},
												{
													"key": "productIssueId",
													"value": "{{productIssueId}}",
													"description": "Filter accounts by productIssueId",
													"disabled": true
												},
												{
													"key": "origin",
													"value": "FIAPI",
													"description": "Filter accounts by origin",
													"disabled": true
												},
												{
													"key": "paymentAccountIdentifier",
													"value": "<string>",
													"description": "Filter accounts by payment account identifier",
													"disabled": true
												},
												{
													"key": "customerName",
													"value": "<string>",
													"description": "Filter accounts by customer name",
													"disabled": true
												},
												{
													"key": "name",
													"value": "<string>",
													"description": "Filter accounts by account name",
													"disabled": true
												},
												{
													"key": "customerId",
													"value": "<string>",
													"description": "Filter accounts by customer id",
													"disabled": true
												},
												{
													"key": "reviewDateUtc",
													"value": "<string>",
													"description": "Filter accounts by review date",
													"disabled": true
												},
												{
													"key": "productType",
													"value": "DEPOSIT",
													"description": "Filter accounts by product type"
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts?productType=DEPOSIT",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "productId",
													"value": "{{productId}}",
													"description": "Filter accounts by productId",
													"disabled": true
												},
												{
													"key": "productIssueId",
													"value": "{{productIssueId}}",
													"description": "Filter accounts by productIssueId",
													"disabled": true
												},
												{
													"key": "origin",
													"value": "FIAPI",
													"description": "Filter accounts by origin",
													"disabled": true
												},
												{
													"key": "paymentAccountIdentifier",
													"value": "<string>",
													"description": "Filter accounts by payment account identifier",
													"disabled": true
												},
												{
													"key": "customerName",
													"value": "<string>",
													"description": "Filter accounts by customer name",
													"disabled": true
												},
												{
													"key": "name",
													"value": "<string>",
													"description": "Filter accounts by account name",
													"disabled": true
												},
												{
													"key": "customerId",
													"value": "<string>",
													"description": "Filter accounts by customer id",
													"disabled": true
												},
												{
													"key": "reviewDateUtc",
													"value": "<string>",
													"description": "Filter accounts by review date",
													"disabled": true
												},
												{
													"key": "productType",
													"value": "DEPOSIT",
													"description": "Filter accounts by product type"
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Creates an account (Service account level only)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"accountId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"imported\": false,\n  \"assignPaymentInterface\": true,\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/accounts",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"accounts"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Creates an account (Importing from external system & Service account level only)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"accountId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"imported\": true,\n  \"legacyId\": \"123-000-legacy-id-000-123\",\n  \"assignPaymentInterface\": true,\n  \"iban\": \"GB29NWBK60161331926819\",\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/accounts",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"accounts"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"productId\": \"<uuid>\",\n  \"productIssueId\": \"<uuid>\",\n  \"state\": \"SUSPENDED_OUT\",\n  \"productIssue\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"DEPOSIT_CURRENT_ACCOUNT\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"COMMERCIAL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"id\": \"<uuid>\",\n    \"name\": \"<string>\",\n    \"state\": \"REJECTED\",\n    \"issueNumber\": \"<number>\",\n    \"imported\": \"<boolean>\",\n    \"legacyId\": \"<string>\",\n    \"metadata\": {},\n    \"productId\": \"<uuid>\",\n    \"productIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"ORGANISATION\"\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"FIXED\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"DAY\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"DAY\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_360\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"2610657\"\n            },\n            \"postingScheduleType\": \"FIXED_SCHEDULE\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"PRODUCT\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"OCTOBER\",\n            \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"FEBRUARY\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"VARIABLE\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JULY\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"NOVEMBER\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositOverdraftSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2955\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"58227834257\"\n      },\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"MATURITY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n      \"postedPeriodType\": \"YEAR\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"046024\"\n      },\n      \"rateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MARCH\"\n    },\n    \"depositFixedTermSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"termPeriodType\": \"QUARTER\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"397\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"242598611\"\n      },\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n      \"initialDepositWindowPeriodType\": \"MATURITY\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"882\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"DAY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridable\": \"<boolean>\",\n      \"maturityType\": \"INTEREST_ONLY_WITHDRAWAL\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityAction1Type\": \"WITHDRAWAL\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      }\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"61228886177\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71986048553\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5221\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"DAY\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"productSubType\": \"<string>\",\n  \"productType\": \"<string>\",\n  \"type\": \"INSTITUTION\",\n  \"defaultWalletId\": \"<string>\",\n  \"defaultCurrency\": \"GBP\",\n  \"availableBalance\": {\n    \"default\": \"BSD\",\n    \"Duis_f\": \"<string>\",\n    \"in_ca\": \"<string>\"\n  },\n  \"balance\": {\n    \"default\": \"SEK\",\n    \"et768\": \"<string>\"\n  },\n  \"enabled\": \"<boolean>\",\n  \"customerId\": \"C\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"nextMigrationId\": \"<uuid>\",\n  \"nextMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"migrationStatus\": \"PENDING\",\n  \"migrationFailureCode\": \"MigrationDepositOverdraftInterestSettings\",\n  \"lastSuccessfulMigrationId\": \"<uuid>\",\n  \"lastSuccessfulMigrationIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ASSOCIATION\"\n  },\n  \"accountSettings\": {\n    \"generalSettings\": {\n      \"name\": \"<string>\",\n      \"description\": \"<string>\",\n      \"type\": \"LENDING\",\n      \"subType\": \"LENDING_INTEREST_FREE\",\n      \"defaultWalletCurrency\": \"GBP\",\n      \"code\": \"<string>\",\n      \"targetCustomerType\": \"RETAIL\",\n      \"legacyId\": \"<string>\",\n      \"imported\": \"<boolean>\"\n    },\n    \"generalPayeeSettings\": {\n      \"restrictNumberOfPayees\": \"<boolean>\",\n      \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n      \"maximumNumberOfPayees\": \"<number>\",\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositCardSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositBankSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n      \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n      \"chapsInboundEnabled\": \"<boolean>\",\n      \"chapsOutboundEnabled\": \"<boolean>\",\n      \"directDebitsEnabled\": \"<boolean>\",\n      \"directCreditsEnabled\": \"<boolean>\",\n      \"bacsInboundEnabled\": \"<boolean>\",\n      \"bacsOutboundEnabled\": \"<boolean>\",\n      \"overridden\": \"<boolean>\"\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"DAY\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"371640\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"JUNE\",\n      \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JULY\"\n    },\n    \"depositOverdraftSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"hardLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"97902395\"\n      },\n      \"softLimit\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3991441392\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"reviewPeriodType\": \"DAY\",\n      \"reviewPeriodValue\": \"<number>\"\n    },\n    \"depositOverdraftInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"WEEK\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_365\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"55910\"\n      },\n      \"overridden\": \"<boolean>\",\n      \"rateValue\": \"<number>\",\n      \"cumulativeRateValue\": \"<number>\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"FEBRUARY\",\n      \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"JANUARY\"\n    },\n    \"depositFixedTermSettings\": {\n      \"termPeriodType\": \"WEEK\",\n      \"termPeriodValue\": \"<number>\",\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31466394902\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5\"\n      },\n      \"fundingWindowPeriodType\": \"MATURITY\",\n      \"fundingWindowPeriodValue\": \"<number>\",\n      \"initialDepositWindowPeriodType\": \"YEAR\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\"\n    },\n    \"depositInstantAccessSettings\": {\n      \"minimumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"382016623\"\n      },\n      \"maximumBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"11959\"\n      },\n      \"initialDepositWindowPeriodType\": \"MONTH\",\n      \"initialDepositWindowPeriodValue\": \"<number>\",\n      \"fundingWindowPeriodType\": \"QUARTER\",\n      \"fundingWindowPeriodValue\": \"<number>\"\n    },\n    \"depositFixedTermMaturitySettings\": {\n      \"overridden\": \"<boolean>\",\n      \"overridable\": \"<boolean>\",\n      \"maturityWindowPeriodType\": \"MATURITY\",\n      \"maturityWindowPeriodValue\": \"<number>\",\n      \"maturityType\": \"REINVEST_FULL_BALANCE\",\n      \"maturityAction1Type\": \"REINVEST\",\n      \"maturityAction1ProductId\": \"<uuid>\",\n      \"maturityAction1ProductIssueId\": \"<uuid>\",\n      \"maturityAction1Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"maturityAction1ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"maturityAction1Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"17518\"\n      },\n      \"maturityAction2Type\": \"REINVEST\",\n      \"maturityAction2ProductId\": \"<uuid>\",\n      \"maturityAction2ProductIssueId\": \"<uuid>\",\n      \"maturityAction2Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"maturityAction2Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6045\"\n      },\n      \"maturityAction3Type\": \"REINVEST\",\n      \"maturityAction3ProductId\": \"<uuid>\",\n      \"maturityAction3ProductIssueId\": \"<uuid>\",\n      \"maturityAction3Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CUSTOMER\"\n      },\n      \"maturityAction3ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"maturityAction3Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"maturityAction4Type\": \"WITHDRAWAL\",\n      \"maturityAction4ProductId\": \"<uuid>\",\n      \"maturityAction4ProductIssueId\": \"<uuid>\",\n      \"maturityAction4Product\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"maturityAction4ProductIssue\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"CARD\"\n      },\n      \"maturityAction4Amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"065\"\n      }\n    },\n    \"secondaryWalletSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"secondaryWalletTypes\": [\n        {\n          \"id\": \"<string>\",\n          \"generalSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"code\": \"<string>\",\n            \"name\": \"<string>\",\n            \"allowedCurrencies\": [\n              \"GBP\"\n            ]\n          },\n          \"depositInterestSettings\": {\n            \"overridable\": \"<boolean>\",\n            \"enabled\": \"<boolean>\",\n            \"rateType\": \"VARIABLE\",\n            \"rateValue\": \"<number>\",\n            \"accruedPeriodType\": \"MONTH\",\n            \"accruedPeriodValue\": \"<number>\",\n            \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n            \"postedPeriodType\": \"QUARTER\",\n            \"postedPeriodValue\": \"<number>\",\n            \"daysInYearType\": \"ACTUAL_365\",\n            \"nonWorkingDaysType\": \"<string>\",\n            \"interestBearingThreshold\": {\n              \"currency\": \"<string>\",\n              \"amount\": \"43785\"\n            },\n            \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n            \"rateSourceId\": \"<string>\",\n            \"rateSourceIdentifier\": {\n              \"entityId\": \"<string>\",\n              \"entityName\": \"<string>\",\n              \"entityType\": \"MIGRATION\"\n            },\n            \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n            \"accruedPeriodOnDayOfMonth\": \"<number>\",\n            \"accruedPeriodOnMonth\": \"JULY\",\n            \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n            \"postedPeriodOnDayOfMonth\": \"<number>\",\n            \"postedPeriodOnMonth\": \"JUNE\",\n            \"cumulativeRateValue\": \"<number>\"\n          }\n        }\n      ]\n    },\n    \"depositPaymentOrderSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"overridden\": \"<boolean>\",\n      \"oneApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"23292\"\n      },\n      \"oneApprovalThresholdEnabled\": \"<boolean>\",\n      \"twoApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"5309216280\"\n      },\n      \"twoApprovalThresholdEnabled\": \"<boolean>\",\n      \"threeApprovalThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"31920\"\n      },\n      \"threeApprovalThresholdEnabled\": \"<boolean>\",\n      \"restrictToWorkingDay\": \"<boolean>\"\n    },\n    \"depositCoolingOffSettings\": {\n      \"enabled\": \"<boolean>\",\n      \"coolingOffPeriodType\": \"WEEK\",\n      \"coolingOffPeriodValue\": \"<number>\"\n    }\n  },\n  \"accountValues\": {\n    \"depositFixedTermValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositFixedTermMaturityValues\": {\n      \"maturityDateUtc\": \"<dateTime>\",\n      \"maturityCalendarDateUtc\": \"<dateTime>\",\n      \"maturityWindowStartDateUtc\": \"<dateTime>\",\n      \"maturityBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"028516795\"\n      }\n    },\n    \"depositValues\": {\n      \"fundingWindowStartDateUtc\": \"<dateTime>\",\n      \"fundingWindowEndDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowStartDateUtc\": \"<dateTime>\",\n      \"initialDepositWindowEndDateUtc\": \"<dateTime>\"\n    },\n    \"depositCoolingOffValues\": {\n      \"coolingOffStartDateUtc\": \"<dateTime>\",\n      \"coolingOffEndDateUtc\": \"<dateTime>\"\n    }\n  },\n  \"wallets\": [\n    {\n      \"id\": \"<uuid>\",\n      \"name\": \"<string>\",\n      \"state\": \"READ_ONLY\",\n      \"secondaryWalletTypeCode\": \"<string>\",\n      \"type\": \"DEFAULT\",\n      \"currency\": \"GBP\",\n      \"availableBalance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"356754\"\n      },\n      \"balance\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"6788876531\"\n      },\n      \"createdAt\": \"<dateTime>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAt\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"default\": \"<boolean>\",\n      \"walletSettings\": {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n          \"postedPeriodType\": \"DAY\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_360\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"01\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"MIGRATION\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"AUGUST\",\n          \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JUNE\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    }\n  ],\n  \"inboundOverrideTransactionReference\": \"<string>\",\n  \"outboundOverrideTransactionReference\": \"<string>\",\n  \"accountStateReasonCode\": \"MANUAL\",\n  \"accountStateReasonDescription\": \"<string>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT\"\n  },\n  \"productIssueIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"paymentInterfaces\": [\n    {\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\",\n      \"iban\": \"<string>\",\n      \"bic\": \"<string>\",\n      \"redirecionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ],\n  \"metadata\": {}\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomFullName}} Account\",\n  \"productId\": \"{{productId}}\",\n  \"productIssueId\": \"{{productIssueId}}\",\n  \"productCode\": \"{{productCode}}\",\n  \"productIssueCode\": \"{{productIssueCode}}\",\n  \"customerId\": \"{{customerId}}\",\n  \"reviewDateUtc\": \"2025-{{RandomMonth}}-{{RandomDay}} 12:00\",\n  \"imported\": false,\n  //\"legacyId\": \"<string>\", // Used if importing account from external system\n  \"assignPaymentInterface\": true,\n  //\"iban\": \"<string>\", // Used if an iban is already connected to this account\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/accounts",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"accounts"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "product-issues",
					"item": [
						{
							"name": "current",
							"item": [
								{
									"name": "Gets all product issues",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues/current",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues",
												"current"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "1",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "10",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "subType",
													"value": "DEPOSIT_FIXED_TERM",
													"description": "Filter by product sub type",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"disabled": true
												},
												{
													"key": "returnAllSettings",
													"value": "true",
													"disabled": true
												}
											]
										}
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/current?type=DEPOSIT",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														"current"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "type",
															"value": "DEPOSIT",
															"description": "Filter by product type"
														},
														{
															"key": "subType",
															"value": "DEPOSIT_NOTICE",
															"description": "Filter by product sub type",
															"disabled": true
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"code\": \"<string>\",\n      \"createdAtUtc\": \"<string>\",\n      \"generalSettings\": {\n        \"name\": \"<string>\",\n        \"description\": \"<string>\",\n        \"type\": \"DEPOSIT\",\n        \"subType\": \"DEPOSIT_INSTANT_ACCESS\",\n        \"defaultWalletCurrency\": \"GBP\",\n        \"code\": \"<string>\",\n        \"targetCustomerType\": \"RETAIL\",\n        \"legacyId\": \"<string>\",\n        \"imported\": \"<boolean>\"\n      },\n      \"id\": \"<uuid>\",\n      \"issueNumber\": \"<number>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"productIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"state\": \"REJECTED\",\n      \"updatedAtUtc\": \"<string>\",\n      \"imported\": \"<boolean>\",\n      \"legacyId\": \"<string>\",\n      \"metadata\": {},\n      \"secondaryWalletSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"secondaryWalletTypes\": [\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"FIXED\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"DAY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"WEEK\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_360\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"417\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"INSTITUTIONAL_USER\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"JULY\",\n              \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"MARCH\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"VARIABLE\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"WEEK\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"QUARTER\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_360\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"85\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"USER\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"MARCH\",\n              \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"SEPTEMBER\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          }\n        ]\n      },\n      \"generalPayeeSettings\": {\n        \"restrictNumberOfPayees\": \"<boolean>\",\n        \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"maximumNumberOfPayees\": \"<number>\",\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositCardSettings\": {\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositBankSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n        \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n        \"chapsInboundEnabled\": \"<boolean>\",\n        \"chapsOutboundEnabled\": \"<boolean>\",\n        \"directDebitsEnabled\": \"<boolean>\",\n        \"directCreditsEnabled\": \"<boolean>\",\n        \"bacsInboundEnabled\": \"<boolean>\",\n        \"bacsOutboundEnabled\": \"<boolean>\"\n      },\n      \"depositInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"FIXED\",\n        \"rateValue\": \"<number>\",\n        \"accruedPeriodType\": \"WEEK\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n        \"postedPeriodType\": \"DAY\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_365\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"328301\"\n        },\n        \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n        \"rateSourceId\": \"<string>\",\n        \"rateSourceIdentifier\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n        },\n        \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"JULY\",\n        \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"SEPTEMBER\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositOverdraftSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"hardLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2\"\n        },\n        \"softLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"75185715760\"\n        },\n        \"reviewPeriodType\": \"MATURITY\",\n        \"reviewPeriodValue\": \"<number>\"\n      },\n      \"depositOverdraftInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"VARIABLE\",\n        \"accruedPeriodType\": \"MONTH\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n        \"postedPeriodType\": \"MATURITY\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_365\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"743182251\"\n        },\n        \"rateValue\": \"<number>\",\n        \"rateSourceId\": \"<string>\",\n        \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"AUGUST\",\n        \"postedPeriodOnDayOfWeek\": \"FRIDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"FEBRUARY\"\n      },\n      \"depositFixedTermSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"termPeriodType\": \"DAY\",\n        \"termPeriodValue\": \"<number>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"713\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"7\"\n        },\n        \"fundingWindowPeriodType\": \"MATURITY\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\",\n        \"initialDepositWindowPeriodType\": \"MONTH\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositInstantAccessSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"829\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"0206\"\n        },\n        \"initialDepositWindowPeriodType\": \"MONTH\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"fundingWindowPeriodType\": \"MONTH\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\"\n      },\n      \"depositFixedTermMaturitySettings\": {\n        \"overridable\": \"<boolean>\",\n        \"maturityType\": \"CUSTOM\",\n        \"maturityWindowPeriodType\": \"MATURITY\",\n        \"maturityWindowPeriodValue\": \"<number>\",\n        \"maturityAction1Type\": \"WITHDRAWAL\",\n        \"maturityAction1ProductId\": \"<uuid>\",\n        \"maturityAction1Product\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"INSTITUTIONAL_USER\"\n        }\n      },\n      \"depositPaymentOrderSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"oneApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"6518168420\"\n        },\n        \"oneApprovalThresholdEnabled\": \"<boolean>\",\n        \"twoApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"9\"\n        },\n        \"twoApprovalThresholdEnabled\": \"<boolean>\",\n        \"threeApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"50564599\"\n        },\n        \"threeApprovalThresholdEnabled\": \"<boolean>\",\n        \"restrictToWorkingDay\": \"<boolean>\"\n      },\n      \"depositCoolingOffSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"coolingOffPeriodType\": \"YEAR\",\n        \"coolingOffPeriodValue\": \"<number>\"\n      }\n    },\n    {\n      \"code\": \"<string>\",\n      \"createdAtUtc\": \"<string>\",\n      \"generalSettings\": {\n        \"name\": \"<string>\",\n        \"description\": \"<string>\",\n        \"type\": \"DEPOSIT\",\n        \"subType\": \"LENDING_DYNAMIC_TERM\",\n        \"defaultWalletCurrency\": \"GBP\",\n        \"code\": \"<string>\",\n        \"targetCustomerType\": \"COMMERCIAL\",\n        \"legacyId\": \"<string>\",\n        \"imported\": \"<boolean>\"\n      },\n      \"id\": \"<uuid>\",\n      \"issueNumber\": \"<number>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"productIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"state\": \"PUBLISHED\",\n      \"updatedAtUtc\": \"<string>\",\n      \"imported\": \"<boolean>\",\n      \"legacyId\": \"<string>\",\n      \"metadata\": {},\n      \"secondaryWalletSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"secondaryWalletTypes\": [\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"FIXED\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"DAY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"QUARTER\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_360\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"848502823\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"PRODUCT_ISSUE\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n              \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"MARCH\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"VARIABLE\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"MATURITY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n              \"postedPeriodType\": \"YEAR\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_365\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"661\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"ORGANISATION\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"MAY\",\n              \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"OCTOBER\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          }\n        ]\n      },\n      \"generalPayeeSettings\": {\n        \"restrictNumberOfPayees\": \"<boolean>\",\n        \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"maximumNumberOfPayees\": \"<number>\",\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositCardSettings\": {\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositBankSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n        \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n        \"chapsInboundEnabled\": \"<boolean>\",\n        \"chapsOutboundEnabled\": \"<boolean>\",\n        \"directDebitsEnabled\": \"<boolean>\",\n        \"directCreditsEnabled\": \"<boolean>\",\n        \"bacsInboundEnabled\": \"<boolean>\",\n        \"bacsOutboundEnabled\": \"<boolean>\"\n      },\n      \"depositInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"VARIABLE\",\n        \"rateValue\": \"<number>\",\n        \"accruedPeriodType\": \"WEEK\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n        \"postedPeriodType\": \"WEEK\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_360\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"76459090\"\n        },\n        \"postingScheduleType\": \"FIXED_SCHEDULE\",\n        \"rateSourceId\": \"<string>\",\n        \"rateSourceIdentifier\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"MIGRATION\"\n        },\n        \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"AUGUST\",\n        \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"MAY\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositOverdraftSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"hardLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"617119\"\n        },\n        \"softLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"95386357\"\n        },\n        \"reviewPeriodType\": \"YEAR\",\n        \"reviewPeriodValue\": \"<number>\"\n      },\n      \"depositOverdraftInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"VARIABLE\",\n        \"accruedPeriodType\": \"WEEK\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n        \"postedPeriodType\": \"YEAR\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_365\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"215760\"\n        },\n        \"rateValue\": \"<number>\",\n        \"rateSourceId\": \"<string>\",\n        \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"NOVEMBER\",\n        \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"JANUARY\"\n      },\n      \"depositFixedTermSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"termPeriodType\": \"MATURITY\",\n        \"termPeriodValue\": \"<number>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"61278046531\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"908251\"\n        },\n        \"fundingWindowPeriodType\": \"QUARTER\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\",\n        \"initialDepositWindowPeriodType\": \"DAY\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositInstantAccessSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"877654974\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"9125090\"\n        },\n        \"initialDepositWindowPeriodType\": \"MATURITY\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"fundingWindowPeriodType\": \"MONTH\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\"\n      },\n      \"depositFixedTermMaturitySettings\": {\n        \"overridable\": \"<boolean>\",\n        \"maturityType\": \"REINVEST_FULL_BALANCE\",\n        \"maturityWindowPeriodType\": \"MATURITY\",\n        \"maturityWindowPeriodValue\": \"<number>\",\n        \"maturityAction1Type\": \"WITHDRAWAL\",\n        \"maturityAction1ProductId\": \"<uuid>\",\n        \"maturityAction1Product\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"PERSON\"\n        }\n      },\n      \"depositPaymentOrderSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"oneApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"64\"\n        },\n        \"oneApprovalThresholdEnabled\": \"<boolean>\",\n        \"twoApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"84578\"\n        },\n        \"twoApprovalThresholdEnabled\": \"<boolean>\",\n        \"threeApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"9490916048\"\n        },\n        \"threeApprovalThresholdEnabled\": \"<boolean>\",\n        \"restrictToWorkingDay\": \"<boolean>\"\n      },\n      \"depositCoolingOffSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"coolingOffPeriodType\": \"YEAR\",\n        \"coolingOffPeriodValue\": \"<number>\"\n      }\n    }\n  ]\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/current?type=DEPOSIT",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														"current"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "type",
															"value": "DEPOSIT",
															"description": "Filter by product type"
														},
														{
															"key": "subType",
															"value": "DEPOSIT_NOTICE",
															"description": "Filter by product sub type",
															"disabled": true
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/current?type=DEPOSIT",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														"current"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "type",
															"value": "DEPOSIT",
															"description": "Filter by product type"
														},
														{
															"key": "subType",
															"value": "DEPOSIT_NOTICE",
															"description": "Filter by product sub type",
															"disabled": true
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/current?type=DEPOSIT",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														"current"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "type",
															"value": "DEPOSIT",
															"description": "Filter by product type"
														},
														{
															"key": "subType",
															"value": "DEPOSIT_NOTICE",
															"description": "Filter by product sub type",
															"disabled": true
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/current?type=DEPOSIT",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														"current"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "type",
															"value": "DEPOSIT",
															"description": "Filter by product type"
														},
														{
															"key": "subType",
															"value": "DEPOSIT_NOTICE",
															"description": "Filter by product sub type",
															"disabled": true
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/current?type=DEPOSIT",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														"current"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "type",
															"value": "DEPOSIT",
															"description": "Filter by product type"
														},
														{
															"key": "subType",
															"value": "DEPOSIT_NOTICE",
															"description": "Filter by product sub type",
															"disabled": true
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "{productIssueId}",
							"item": [
								{
									"name": "Gets a detailed view of a product issue",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues",
												":productIssueId"
											],
											"variable": [
												{
													"key": "productIssueId",
													"value": "{{productIssueId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														":productIssueId"
													],
													"variable": [
														{
															"key": "productIssueId",
															"value": "{{productIssueId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"generalSettings\": {\n    \"name\": \"<string>\",\n    \"description\": \"<string>\",\n    \"type\": \"DEPOSIT\",\n    \"subType\": \"LENDING_FIXED_TERM\",\n    \"defaultWalletCurrency\": \"GBP\",\n    \"code\": \"<string>\",\n    \"targetCustomerType\": \"COMMERCIAL\",\n    \"legacyId\": \"<string>\",\n    \"imported\": \"<boolean>\"\n  },\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"state\": \"REJECTED\",\n  \"issueNumber\": \"<number>\",\n  \"imported\": \"<boolean>\",\n  \"legacyId\": \"<string>\",\n  \"metadata\": {},\n  \"productId\": \"<uuid>\",\n  \"productIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"secondaryWalletSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"secondaryWalletTypes\": [\n      {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\",\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"FIXED\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"MONTH\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n          \"postedPeriodType\": \"YEAR\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_365\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"876259189\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"OCTOBER\",\n          \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"JULY\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      },\n      {\n        \"id\": \"<string>\",\n        \"generalSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"code\": \"<string>\",\n          \"name\": \"<string>\",\n          \"allowedCurrencies\": [\n            \"GBP\",\n            \"GBP\"\n          ]\n        },\n        \"depositInterestSettings\": {\n          \"overridable\": \"<boolean>\",\n          \"enabled\": \"<boolean>\",\n          \"rateType\": \"VARIABLE\",\n          \"rateValue\": \"<number>\",\n          \"accruedPeriodType\": \"DAY\",\n          \"accruedPeriodValue\": \"<number>\",\n          \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n          \"postedPeriodType\": \"WEEK\",\n          \"postedPeriodValue\": \"<number>\",\n          \"daysInYearType\": \"ACTUAL_365\",\n          \"nonWorkingDaysType\": \"<string>\",\n          \"interestBearingThreshold\": {\n            \"currency\": \"<string>\",\n            \"amount\": \"5186751\"\n          },\n          \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n          \"rateSourceId\": \"<string>\",\n          \"rateSourceIdentifier\": {\n            \"entityId\": \"<string>\",\n            \"entityName\": \"<string>\",\n            \"entityType\": \"ADDRESS\"\n          },\n          \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n          \"accruedPeriodOnDayOfMonth\": \"<number>\",\n          \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n          \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n          \"postedPeriodOnDayOfMonth\": \"<number>\",\n          \"postedPeriodOnMonth\": \"MARCH\",\n          \"cumulativeRateValue\": \"<number>\"\n        }\n      }\n    ]\n  },\n  \"generalPayeeSettings\": {\n    \"restrictNumberOfPayees\": \"<boolean>\",\n    \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n    \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n    \"maximumNumberOfPayees\": \"<number>\",\n    \"overridable\": \"<boolean>\"\n  },\n  \"depositCardSettings\": {\n    \"overridable\": \"<boolean>\"\n  },\n  \"depositBankSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n    \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n    \"chapsInboundEnabled\": \"<boolean>\",\n    \"chapsOutboundEnabled\": \"<boolean>\",\n    \"directDebitsEnabled\": \"<boolean>\",\n    \"directCreditsEnabled\": \"<boolean>\",\n    \"bacsInboundEnabled\": \"<boolean>\",\n    \"bacsOutboundEnabled\": \"<boolean>\"\n  },\n  \"depositInterestSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"enabled\": \"<boolean>\",\n    \"rateType\": \"FIXED\",\n    \"rateValue\": \"<number>\",\n    \"accruedPeriodType\": \"MONTH\",\n    \"accruedPeriodValue\": \"<number>\",\n    \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n    \"postedPeriodType\": \"YEAR\",\n    \"postedPeriodValue\": \"<number>\",\n    \"daysInYearType\": \"ACTUAL_365\",\n    \"nonWorkingDaysType\": \"<string>\",\n    \"interestBearingThreshold\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"20357929576\"\n    },\n    \"postingScheduleType\": \"ANNIVERSARY_FIRST_TRANSACTION\",\n    \"rateSourceId\": \"<string>\",\n    \"rateSourceIdentifier\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"PERSON\"\n    },\n    \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n    \"accruedPeriodOnDayOfMonth\": \"<number>\",\n    \"accruedPeriodOnMonth\": \"MAY\",\n    \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n    \"postedPeriodOnDayOfMonth\": \"<number>\",\n    \"postedPeriodOnMonth\": \"JULY\",\n    \"cumulativeRateValue\": \"<number>\"\n  },\n  \"depositOverdraftSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"enabled\": \"<boolean>\",\n    \"hardLimit\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"95\"\n    },\n    \"softLimit\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"688384\"\n    },\n    \"reviewPeriodType\": \"DAY\",\n    \"reviewPeriodValue\": \"<number>\"\n  },\n  \"depositOverdraftInterestSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"enabled\": \"<boolean>\",\n    \"rateType\": \"FIXED\",\n    \"accruedPeriodType\": \"MATURITY\",\n    \"accruedPeriodValue\": \"<number>\",\n    \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n    \"postedPeriodType\": \"MATURITY\",\n    \"postedPeriodValue\": \"<number>\",\n    \"daysInYearType\": \"ACTUAL_360\",\n    \"nonWorkingDaysType\": \"<string>\",\n    \"interestBearingThreshold\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"37\"\n    },\n    \"rateValue\": \"<number>\",\n    \"rateSourceId\": \"<string>\",\n    \"accruedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n    \"accruedPeriodOnDayOfMonth\": \"<number>\",\n    \"accruedPeriodOnMonth\": \"JANUARY\",\n    \"postedPeriodOnDayOfWeek\": \"SATURDAY\",\n    \"postedPeriodOnDayOfMonth\": \"<number>\",\n    \"postedPeriodOnMonth\": \"JULY\"\n  },\n  \"depositFixedTermSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"termPeriodType\": \"DAY\",\n    \"termPeriodValue\": \"<number>\",\n    \"minimumBalance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"800546509\"\n    },\n    \"maximumBalance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"91\"\n    },\n    \"fundingWindowPeriodType\": \"DAY\",\n    \"fundingWindowPeriodValue\": \"<number>\",\n    \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\",\n    \"initialDepositWindowPeriodType\": \"QUARTER\",\n    \"initialDepositWindowPeriodValue\": \"<number>\",\n    \"cumulativeRateValue\": \"<number>\"\n  },\n  \"depositInstantAccessSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"minimumBalance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"48736\"\n    },\n    \"maximumBalance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"29\"\n    },\n    \"initialDepositWindowPeriodType\": \"QUARTER\",\n    \"initialDepositWindowPeriodValue\": \"<number>\",\n    \"fundingWindowPeriodType\": \"WEEK\",\n    \"fundingWindowPeriodValue\": \"<number>\",\n    \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\"\n  },\n  \"depositFixedTermMaturitySettings\": {\n    \"overridable\": \"<boolean>\",\n    \"maturityType\": \"FULL_WITHDRAWAL\",\n    \"maturityWindowPeriodType\": \"DAY\",\n    \"maturityWindowPeriodValue\": \"<number>\",\n    \"maturityAction1Type\": \"WITHDRAWAL\",\n    \"maturityAction1ProductId\": \"<uuid>\",\n    \"maturityAction1Product\": {\n      \"entityId\": \"<string>\",\n      \"entityName\": \"<string>\",\n      \"entityType\": \"USER\"\n    }\n  },\n  \"depositPaymentOrderSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"oneApprovalThreshold\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"952969350\"\n    },\n    \"oneApprovalThresholdEnabled\": \"<boolean>\",\n    \"twoApprovalThreshold\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"38017713\"\n    },\n    \"twoApprovalThresholdEnabled\": \"<boolean>\",\n    \"threeApprovalThreshold\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"25168\"\n    },\n    \"threeApprovalThresholdEnabled\": \"<boolean>\",\n    \"restrictToWorkingDay\": \"<boolean>\"\n  },\n  \"depositCoolingOffSettings\": {\n    \"overridable\": \"<boolean>\",\n    \"enabled\": \"<boolean>\",\n    \"coolingOffPeriodType\": \"YEAR\",\n    \"coolingOffPeriodValue\": \"<number>\"\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														":productIssueId"
													],
													"variable": [
														{
															"key": "productIssueId",
															"value": "{{productIssueId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														":productIssueId"
													],
													"variable": [
														{
															"key": "productIssueId",
															"value": "{{productIssueId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														":productIssueId"
													],
													"variable": [
														{
															"key": "productIssueId",
															"value": "{{productIssueId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														":productIssueId"
													],
													"variable": [
														{
															"key": "productIssueId",
															"value": "{{productIssueId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/product-issues/:productIssueId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"product-issues",
														":productIssueId"
													],
													"variable": [
														{
															"key": "productIssueId",
															"value": "{{productIssueId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Gets all product issues",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/product-issues?type=DEPOSIT",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"product-issues"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
											"disabled": true
										},
										{
											"key": "type",
											"value": "DEPOSIT",
											"description": "Filter by product type"
										},
										{
											"key": "subType",
											"value": "DEPOSIT_NOTICE",
											"description": "Filter by product sub type",
											"disabled": true
										}
									]
								}
							},
							"response": [
								{
									"name": "Successful response",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/product-issues?type=DEPOSIT&subType=DEPOSIT_NOTICE",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"product-issues"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"description": "Filter by product type"
												},
												{
													"key": "subType",
													"value": "DEPOSIT_NOTICE",
													"description": "Filter by product sub type"
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"code\": \"<string>\",\n      \"createdAtUtc\": \"<string>\",\n      \"generalSettings\": {\n        \"name\": \"<string>\",\n        \"description\": \"<string>\",\n        \"type\": \"DEPOSIT\",\n        \"subType\": \"DEPOSIT_INSTANT_ACCESS\",\n        \"defaultWalletCurrency\": \"GBP\",\n        \"code\": \"<string>\",\n        \"targetCustomerType\": \"RETAIL\",\n        \"legacyId\": \"<string>\",\n        \"imported\": \"<boolean>\"\n      },\n      \"id\": \"<uuid>\",\n      \"issueNumber\": \"<number>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"productIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"state\": \"REJECTED\",\n      \"updatedAtUtc\": \"<string>\",\n      \"imported\": \"<boolean>\",\n      \"legacyId\": \"<string>\",\n      \"metadata\": {},\n      \"secondaryWalletSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"secondaryWalletTypes\": [\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"FIXED\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"DAY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"WEEK\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_360\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"417\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"INSTITUTIONAL_USER\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"MONDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"JULY\",\n              \"postedPeriodOnDayOfWeek\": \"MONDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"MARCH\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"VARIABLE\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"WEEK\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"QUARTER\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_360\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"85\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"USER\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"MARCH\",\n              \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"SEPTEMBER\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          }\n        ]\n      },\n      \"generalPayeeSettings\": {\n        \"restrictNumberOfPayees\": \"<boolean>\",\n        \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"maximumNumberOfPayees\": \"<number>\",\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositCardSettings\": {\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositBankSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n        \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n        \"chapsInboundEnabled\": \"<boolean>\",\n        \"chapsOutboundEnabled\": \"<boolean>\",\n        \"directDebitsEnabled\": \"<boolean>\",\n        \"directCreditsEnabled\": \"<boolean>\",\n        \"bacsInboundEnabled\": \"<boolean>\",\n        \"bacsOutboundEnabled\": \"<boolean>\"\n      },\n      \"depositInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"FIXED\",\n        \"rateValue\": \"<number>\",\n        \"accruedPeriodType\": \"WEEK\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n        \"postedPeriodType\": \"DAY\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_365\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"328301\"\n        },\n        \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n        \"rateSourceId\": \"<string>\",\n        \"rateSourceIdentifier\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n        },\n        \"accruedPeriodOnDayOfWeek\": \"TUESDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"JULY\",\n        \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"SEPTEMBER\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositOverdraftSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"hardLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2\"\n        },\n        \"softLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"75185715760\"\n        },\n        \"reviewPeriodType\": \"MATURITY\",\n        \"reviewPeriodValue\": \"<number>\"\n      },\n      \"depositOverdraftInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"VARIABLE\",\n        \"accruedPeriodType\": \"MONTH\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"AVERAGE_BALANCE\",\n        \"postedPeriodType\": \"MATURITY\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_365\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"743182251\"\n        },\n        \"rateValue\": \"<number>\",\n        \"rateSourceId\": \"<string>\",\n        \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"AUGUST\",\n        \"postedPeriodOnDayOfWeek\": \"FRIDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"FEBRUARY\"\n      },\n      \"depositFixedTermSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"termPeriodType\": \"DAY\",\n        \"termPeriodValue\": \"<number>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"713\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"7\"\n        },\n        \"fundingWindowPeriodType\": \"MATURITY\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\",\n        \"initialDepositWindowPeriodType\": \"MONTH\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositInstantAccessSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"829\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"0206\"\n        },\n        \"initialDepositWindowPeriodType\": \"MONTH\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"fundingWindowPeriodType\": \"MONTH\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\"\n      },\n      \"depositFixedTermMaturitySettings\": {\n        \"overridable\": \"<boolean>\",\n        \"maturityType\": \"CUSTOM\",\n        \"maturityWindowPeriodType\": \"MATURITY\",\n        \"maturityWindowPeriodValue\": \"<number>\",\n        \"maturityAction1Type\": \"WITHDRAWAL\",\n        \"maturityAction1ProductId\": \"<uuid>\",\n        \"maturityAction1Product\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"INSTITUTIONAL_USER\"\n        }\n      },\n      \"depositPaymentOrderSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"oneApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"6518168420\"\n        },\n        \"oneApprovalThresholdEnabled\": \"<boolean>\",\n        \"twoApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"9\"\n        },\n        \"twoApprovalThresholdEnabled\": \"<boolean>\",\n        \"threeApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"50564599\"\n        },\n        \"threeApprovalThresholdEnabled\": \"<boolean>\",\n        \"restrictToWorkingDay\": \"<boolean>\"\n      },\n      \"depositCoolingOffSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"coolingOffPeriodType\": \"YEAR\",\n        \"coolingOffPeriodValue\": \"<number>\"\n      }\n    },\n    {\n      \"code\": \"<string>\",\n      \"createdAtUtc\": \"<string>\",\n      \"generalSettings\": {\n        \"name\": \"<string>\",\n        \"description\": \"<string>\",\n        \"type\": \"DEPOSIT\",\n        \"subType\": \"LENDING_DYNAMIC_TERM\",\n        \"defaultWalletCurrency\": \"GBP\",\n        \"code\": \"<string>\",\n        \"targetCustomerType\": \"COMMERCIAL\",\n        \"legacyId\": \"<string>\",\n        \"imported\": \"<boolean>\"\n      },\n      \"id\": \"<uuid>\",\n      \"issueNumber\": \"<number>\",\n      \"name\": \"<string>\",\n      \"productId\": \"<uuid>\",\n      \"productIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ADDRESS\"\n      },\n      \"state\": \"PUBLISHED\",\n      \"updatedAtUtc\": \"<string>\",\n      \"imported\": \"<boolean>\",\n      \"legacyId\": \"<string>\",\n      \"metadata\": {},\n      \"secondaryWalletSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"secondaryWalletTypes\": [\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"FIXED\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"DAY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n              \"postedPeriodType\": \"QUARTER\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_360\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"848502823\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"PRODUCT_ISSUE\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n              \"postedPeriodOnDayOfWeek\": \"TUESDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"MARCH\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          },\n          {\n            \"id\": \"<string>\",\n            \"generalSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"code\": \"<string>\",\n              \"name\": \"<string>\",\n              \"allowedCurrencies\": [\n                \"GBP\",\n                \"GBP\"\n              ]\n            },\n            \"depositInterestSettings\": {\n              \"overridable\": \"<boolean>\",\n              \"enabled\": \"<boolean>\",\n              \"rateType\": \"VARIABLE\",\n              \"rateValue\": \"<number>\",\n              \"accruedPeriodType\": \"MATURITY\",\n              \"accruedPeriodValue\": \"<number>\",\n              \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n              \"postedPeriodType\": \"YEAR\",\n              \"postedPeriodValue\": \"<number>\",\n              \"daysInYearType\": \"ACTUAL_365\",\n              \"nonWorkingDaysType\": \"<string>\",\n              \"interestBearingThreshold\": {\n                \"currency\": \"<string>\",\n                \"amount\": \"661\"\n              },\n              \"postingScheduleType\": \"ANNIVERSARY_ACCOUNT_OPEN\",\n              \"rateSourceId\": \"<string>\",\n              \"rateSourceIdentifier\": {\n                \"entityId\": \"<string>\",\n                \"entityName\": \"<string>\",\n                \"entityType\": \"ORGANISATION\"\n              },\n              \"accruedPeriodOnDayOfWeek\": \"SUNDAY\",\n              \"accruedPeriodOnDayOfMonth\": \"<number>\",\n              \"accruedPeriodOnMonth\": \"MAY\",\n              \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n              \"postedPeriodOnDayOfMonth\": \"<number>\",\n              \"postedPeriodOnMonth\": \"OCTOBER\",\n              \"cumulativeRateValue\": \"<number>\"\n            }\n          }\n        ]\n      },\n      \"generalPayeeSettings\": {\n        \"restrictNumberOfPayees\": \"<boolean>\",\n        \"restrictInboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"restrictOutboundPaymentsToPayeesOnly\": \"<boolean>\",\n        \"maximumNumberOfPayees\": \"<number>\",\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositCardSettings\": {\n        \"overridable\": \"<boolean>\"\n      },\n      \"depositBankSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"fasterPaymentsInboundEnabled\": \"<boolean>\",\n        \"fasterPaymentsOutboundEnabled\": \"<boolean>\",\n        \"chapsInboundEnabled\": \"<boolean>\",\n        \"chapsOutboundEnabled\": \"<boolean>\",\n        \"directDebitsEnabled\": \"<boolean>\",\n        \"directCreditsEnabled\": \"<boolean>\",\n        \"bacsInboundEnabled\": \"<boolean>\",\n        \"bacsOutboundEnabled\": \"<boolean>\"\n      },\n      \"depositInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"VARIABLE\",\n        \"rateValue\": \"<number>\",\n        \"accruedPeriodType\": \"WEEK\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n        \"postedPeriodType\": \"WEEK\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_360\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"76459090\"\n        },\n        \"postingScheduleType\": \"FIXED_SCHEDULE\",\n        \"rateSourceId\": \"<string>\",\n        \"rateSourceIdentifier\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"MIGRATION\"\n        },\n        \"accruedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"AUGUST\",\n        \"postedPeriodOnDayOfWeek\": \"WEDNESDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"MAY\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositOverdraftSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"hardLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"617119\"\n        },\n        \"softLimit\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"95386357\"\n        },\n        \"reviewPeriodType\": \"YEAR\",\n        \"reviewPeriodValue\": \"<number>\"\n      },\n      \"depositOverdraftInterestSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"rateType\": \"VARIABLE\",\n        \"accruedPeriodType\": \"WEEK\",\n        \"accruedPeriodValue\": \"<number>\",\n        \"calculatedOnBalanceType\": \"MINIMUM_BALANCE\",\n        \"postedPeriodType\": \"YEAR\",\n        \"postedPeriodValue\": \"<number>\",\n        \"daysInYearType\": \"ACTUAL_365\",\n        \"nonWorkingDaysType\": \"<string>\",\n        \"interestBearingThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"215760\"\n        },\n        \"rateValue\": \"<number>\",\n        \"rateSourceId\": \"<string>\",\n        \"accruedPeriodOnDayOfWeek\": \"FRIDAY\",\n        \"accruedPeriodOnDayOfMonth\": \"<number>\",\n        \"accruedPeriodOnMonth\": \"NOVEMBER\",\n        \"postedPeriodOnDayOfWeek\": \"THURSDAY\",\n        \"postedPeriodOnDayOfMonth\": \"<number>\",\n        \"postedPeriodOnMonth\": \"JANUARY\"\n      },\n      \"depositFixedTermSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"termPeriodType\": \"MATURITY\",\n        \"termPeriodValue\": \"<number>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"61278046531\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"908251\"\n        },\n        \"fundingWindowPeriodType\": \"QUARTER\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"FIRST_DEPOSIT\",\n        \"initialDepositWindowPeriodType\": \"DAY\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"cumulativeRateValue\": \"<number>\"\n      },\n      \"depositInstantAccessSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"minimumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"877654974\"\n        },\n        \"maximumBalance\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"9125090\"\n        },\n        \"initialDepositWindowPeriodType\": \"MATURITY\",\n        \"initialDepositWindowPeriodValue\": \"<number>\",\n        \"fundingWindowPeriodType\": \"MONTH\",\n        \"fundingWindowPeriodValue\": \"<number>\",\n        \"fundingWindowTriggerType\": \"MINIMUM_BALANCE_MET\"\n      },\n      \"depositFixedTermMaturitySettings\": {\n        \"overridable\": \"<boolean>\",\n        \"maturityType\": \"REINVEST_FULL_BALANCE\",\n        \"maturityWindowPeriodType\": \"MATURITY\",\n        \"maturityWindowPeriodValue\": \"<number>\",\n        \"maturityAction1Type\": \"WITHDRAWAL\",\n        \"maturityAction1ProductId\": \"<uuid>\",\n        \"maturityAction1Product\": {\n          \"entityId\": \"<string>\",\n          \"entityName\": \"<string>\",\n          \"entityType\": \"PERSON\"\n        }\n      },\n      \"depositPaymentOrderSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"oneApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"64\"\n        },\n        \"oneApprovalThresholdEnabled\": \"<boolean>\",\n        \"twoApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"84578\"\n        },\n        \"twoApprovalThresholdEnabled\": \"<boolean>\",\n        \"threeApprovalThreshold\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"9490916048\"\n        },\n        \"threeApprovalThresholdEnabled\": \"<boolean>\",\n        \"restrictToWorkingDay\": \"<boolean>\"\n      },\n      \"depositCoolingOffSettings\": {\n        \"overridable\": \"<boolean>\",\n        \"enabled\": \"<boolean>\",\n        \"coolingOffPeriodType\": \"YEAR\",\n        \"coolingOffPeriodValue\": \"<number>\"\n      }\n    }\n  ]\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues?type=DEPOSIT&subType=DEPOSIT_NOTICE",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"description": "Filter by product type"
												},
												{
													"key": "subType",
													"value": "DEPOSIT_NOTICE",
													"description": "Filter by product sub type"
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues?type=DEPOSIT&subType=DEPOSIT_NOTICE",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"description": "Filter by product type"
												},
												{
													"key": "subType",
													"value": "DEPOSIT_NOTICE",
													"description": "Filter by product sub type"
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues?type=DEPOSIT&subType=DEPOSIT_NOTICE",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"description": "Filter by product type"
												},
												{
													"key": "subType",
													"value": "DEPOSIT_NOTICE",
													"description": "Filter by product sub type"
												}
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues?type=DEPOSIT&subType=DEPOSIT_NOTICE",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"description": "Filter by product type"
												},
												{
													"key": "subType",
													"value": "DEPOSIT_NOTICE",
													"description": "Filter by product sub type"
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/product-issues?type=DEPOSIT&subType=DEPOSIT_NOTICE",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"product-issues"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "type",
													"value": "DEPOSIT",
													"description": "Filter by product type"
												},
												{
													"key": "subType",
													"value": "DEPOSIT_NOTICE",
													"description": "Filter by product sub type"
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "wallets",
					"item": [
						{
							"name": "{walletId}",
							"item": [
								{
									"name": "card-interfaces",
									"item": [
										{
											"name": "Gets third party card interfaces linked to a wallet.",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"card-interfaces"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												},
												"description": "This endpoint shows all the card accounts linked to this account's  wallet on third party card processor systems"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"cardProcessor\": \"ACCOMPLISH\",\n      \"enabled\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"cardProcessor\": \"GPS\",\n      \"enabled\": \"<boolean>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/card-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"card-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "payment-interfaces",
									"item": [
										{
											"name": "Gets third party payment interfaces linked to a wallet.",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"payment-interfaces"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												},
												"description": "This endpoint shows all the payment interfaces linked to this wallet"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"paymentAccountIdentifier\": \"<string>\",\n      \"paymentProcessor\": \"CLEARBANK\",\n      \"enabled\": \"<boolean>\",\n      \"localisation\": {\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"bic\": \"<string>\",\n        \"upic\": \"<string>\",\n        \"cuid\": \"<string>\"\n      },\n      \"redirectionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"paymentAccountIdentifier\": \"<string>\",\n      \"paymentProcessor\": \"CLEARBANK\",\n      \"enabled\": \"<boolean>\",\n      \"localisation\": {\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"bic\": \"<string>\",\n        \"upic\": \"<string>\",\n        \"cuid\": \"<string>\"\n      },\n      \"redirectionAccount\": {\n        \"name\": \"<string>\",\n        \"identification\": {\n          \"iban\": \"<string>\",\n          \"bban\": \"<string>\",\n          \"accountNumber\": \"<string>\",\n          \"sortCode\": \"<string>\"\n        }\n      }\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/payment-interfaces",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"payment-interfaces"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "transactions",
									"item": [
										{
											"name": "Gets a summary of all of the transactions from the specified wallet",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    pm.environment.set(\"transactionId\", responseBody.results[0].id);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"transactions"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "fromDateUtc",
															"value": "<date>",
															"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "toDateUtc",
															"value": "<date>",
															"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "order",
															"value": "ASC",
															"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
														},
														{
															"key": "orderBy",
															"value": "createdAtUtc",
															"description": "Optional field to order transactions by"
														},
														{
															"key": "transactionType",
															"value": "MANUAL_OUTBOUND_PAYMENT",
															"description": "Optional transaction type filter",
															"disabled": true
														},
														{
															"key": "subTransactionType",
															"value": "<string>",
															"description": "Optional client transaction type filter",
															"disabled": true
														},
														{
															"key": "fromAmount",
															"value": "<number>",
															"description": "Optional from amount filter",
															"disabled": true
														},
														{
															"key": "toAmount",
															"value": "<number>",
															"description": "Optional to amount filter",
															"disabled": true
														},
														{
															"key": "reference",
															"value": "<string>",
															"description": "Optional reference filter",
															"disabled": true
														},
														{
															"key": "mandateId",
															"value": "<string>",
															"description": "The unique identifier for the related mandate.",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"debitCreditCode\": \"CRDT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"MARQETA\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2156183773\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfFloor\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Ceil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3951447\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"GPS\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"260130\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"SAASCADA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Ceil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfFloor\",\n            \"fixedAmountMethod\": \"Before\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "pending-transactions",
									"item": [
										{
											"name": "Gets a summary of all of the transactions from the specified wallet",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    if (responseBody.results.length) {",
															"        pm.environment.set(\"pendingTransactionId\", responseBody.results[0].id);",
															"    }",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"pending-transactions"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "fromDateUtc",
															"value": "<date>",
															"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "toDateUtc",
															"value": "<date>",
															"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "order",
															"value": "ASC",
															"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
														},
														{
															"key": "orderBy",
															"value": "createdAtUtc",
															"description": "Optional field to order transactions by"
														},
														{
															"key": "transactionType",
															"value": "MANUAL_OUTBOUND_PAYMENT",
															"description": "Optional transaction type filter",
															"disabled": true
														},
														{
															"key": "subTransactionType",
															"value": "<string>",
															"description": "Optional client transaction type filter",
															"disabled": true
														},
														{
															"key": "fromAmount",
															"value": "<number>",
															"description": "Optional from amount filter",
															"disabled": true
														},
														{
															"key": "toAmount",
															"value": "<number>",
															"description": "Optional to amount filter",
															"disabled": true
														},
														{
															"key": "reference",
															"value": "<string>",
															"description": "Optional reference filter",
															"disabled": true
														},
														{
															"key": "mandateId",
															"value": "<string>",
															"description": "The unique identifier for the related mandate.",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"13\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"pendingAmount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"53314\"\n      },\n      \"debitCreditCode\": \"CRDT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": {\n        \"value\": \"<Error: Could not resolve allOf schema\"\n      },\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"149\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"feeDescription\": \"<string>\",\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"53873\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"pendingAmount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"1753569513\"\n      },\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": {\n        \"value\": \"<Error: Could not resolve allOf schema\"\n      },\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"853\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"feeDescription\": \"<string>\",\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/pending-transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"pending-transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "cards",
									"item": [
										{
											"name": "Gets all cards",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"cards"
													],
													"query": [
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												},
												"description": "All cards are returned"
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"cards"
															],
															"query": [
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"accountId\": \"<uuid>\",\n      \"cardProcessor\": \"GPS\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"personIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"thirdPartyRequiredFields\": {},\n      \"enabled\": \"<boolean>\"\n    },\n    {\n      \"accountId\": \"<uuid>\",\n      \"cardProcessor\": \"ACCOMPLISH\",\n      \"id\": \"<uuid>\",\n      \"personId\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"personIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"WALLET\"\n      },\n      \"walletId\": \"<uuid>\",\n      \"cardAccountIdentifier\": \"<string>\",\n      \"thirdPartyRequiredFields\": {},\n      \"enabled\": \"<boolean>\"\n    }\n  ]\n}"
												},
												{
													"name": "Unauthorized",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"cards"
															],
															"query": [
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"cards"
															],
															"query": [
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"cards"
															],
															"query": [
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"cards"
															],
															"query": [
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"cards"
															],
															"query": [
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "mandates",
									"item": [
										{
											"name": "Gets all of the Direct Debit mandates associated with the wallet",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"mandates"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "state",
															"value": "CANCELLED",
															"description": "mandate state filter",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"mandateId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"payerName\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"serviceUserNumber\": \"<string>\",\n      \"originatorName\": \"<string>\",\n      \"lastRequestedPayment\": {\n        \"amount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2596\"\n        },\n        \"dateUtc\": \"<dateTime>\"\n      },\n      \"state\": \"PENDING_INITIATION\",\n      \"mandateType\": \"ORIGINATION\",\n      \"createdAtUtc\": \"<dateTime>\"\n    },\n    {\n      \"mandateId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"payerName\": \"<string>\",\n      \"reference\": \"<string>\",\n      \"serviceUserNumber\": \"<string>\",\n      \"originatorName\": \"<string>\",\n      \"lastRequestedPayment\": {\n        \"amount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"0\"\n        },\n        \"dateUtc\": \"<dateTime>\"\n      },\n      \"state\": \"CANCELLED\",\n      \"mandateType\": \"ORIGINATION\",\n      \"createdAtUtc\": \"<dateTime>\"\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "CANCELLED",
																	"description": "mandate state filter",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Request creation of a Direct Debit mandate associated with the wallet.",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"mandates"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												},
												"description": "Only required if you have received a validated Paper DDI and need to inform your PSP of its existence. All other DDIs are set up through AUDDIS. Supply either sort code and account number for UK payee type, or IBAN for IBAN payee type."
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"accepted\": \"<boolean>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/mandates",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"mandates"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "transfer",
									"item": [
										{
											"name": "Transfer funds between wallets in a single account",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"transfer"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"accountId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"56611900550\"\n  },\n  \"sourceWallet\": {\n    \"id\": \"<uuid>\",\n    \"debitCreditCode\": \"CRDT\",\n    \"transactionId\": \"<string>\",\n    \"transactionReference\": \"<string>\",\n    \"balance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"25825899\"\n    },\n    \"availableBalance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"969\"\n    }\n  },\n  \"destinationWallet\": {\n    \"id\": \"<uuid>\",\n    \"debitCreditCode\": \"CRDT\",\n    \"transactionId\": \"<string>\",\n    \"transactionReference\": \"<string>\",\n    \"balance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"434543\"\n    },\n    \"availableBalance\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"51\"\n    }\n  }\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"destinationWalletId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"142730\"\n  },\n  \"debitTransactionReference\": \"S EM\\fDTfk\",\n  \"creditTransactionReference\": \"T\\nb\\f 0A\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transfer",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transfer"
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "statements",
									"item": [
										{
											"name": "Gets a statement of all of the transactions from the specified wallet",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    pm.environment.set(\"transactionId\", responseBody.results[0].id);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "{{institutionsPortalAppMedium}}",
														"type": "text"
													},
													{
														"key": "Content-Type",
														"value": "application/json",
														"type": "text"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId/statement?order=DESC&fromDateUtc=2023-11-01T00%3A00%3A00Z&toDateUtc=2023-11-30T23%3A59%3A59Z",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId",
														"statement"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
															"disabled": true
														},
														{
															"key": "fromDateUtc",
															"value": "<date>",
															"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "toDateUtc",
															"value": "<date>",
															"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
															"disabled": true
														},
														{
															"key": "transactionType",
															"value": "MANUAL_OUTBOUND_PAYMENT",
															"description": "Optional transaction type filter",
															"disabled": true
														},
														{
															"key": "order",
															"value": "DESC"
														},
														{
															"key": "fromDateUtc",
															"value": "2023-11-01T00%3A00%3A00Z"
														},
														{
															"key": "toDateUtc",
															"value": "2023-11-30T23%3A59%3A59Z"
														}
													],
													"variable": [
														{
															"key": "walletId",
															"value": ""
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"9\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"debitCreditCode\": \"CRDT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"MARQETA\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"2156183773\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"MARQETA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfFloor\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Ceil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3951447\"\n      },\n      \"transactionReference\": \"<string>\",\n      \"transactionType\": \"<string>\",\n      \"debitCreditCode\": \"DBIT\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"subTransactionType\": \"<string>\",\n      \"paymentId\": \"<uuid>\",\n      \"creditorName\": \"<string>\",\n      \"counterpartyName\": \"<string>\",\n      \"createdAt\": \"<integer>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"displayDate\": \"<integer>\",\n      \"displayDateUtc\": \"<dateTime>\",\n      \"richdatasource\": \"GPS\",\n      \"richdata\": \"<string>\",\n      \"conversion\": {\n        \"originalAmount\": {\n          \"currency\": \"<string>\",\n          \"amount\": \"260130\"\n        },\n        \"currencyCode\": \"GBP\",\n        \"amount\": \"<string>\",\n        \"rate\": \"<string>\",\n        \"source\": \"SAASCADA\"\n      },\n      \"balance\": \"<string>\",\n      \"availableBalance\": \"<string>\",\n      \"paymentInstructionId\": \"<uuid>\",\n      \"fees\": [\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"Ceil\",\n            \"fixedAmountMethod\": \"After\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        },\n        {\n          \"charge\": {\n            \"percentage\": \"<number>\",\n            \"description\": \"<string>\",\n            \"roundingMethod\": \"HalfFloor\",\n            \"fixedAmountMethod\": \"Before\",\n            \"fixedAmount\": {\n              \"amount\": \"<string>\",\n              \"currencyCode\": \"GBP\"\n            }\n          },\n          \"fxProvider\": \"<string>\",\n          \"transactionId\": \"<uuid>\",\n          \"totalFeeCharged\": {\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"GBP\"\n          }\n        }\n      ],\n      \"mandateId\": \"<string>\",\n      \"scheduledPayment\": \"<boolean>\"\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/wallets/:walletId/transactions?order=ASC&orderBy=createdAtUtc",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"wallets",
																":walletId",
																"transactions"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
																	"disabled": true
																},
																{
																	"key": "fromDateUtc",
																	"value": "<date>",
																	"description": "Optional start date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "toDateUtc",
																	"value": "<date>",
																	"description": "Optional end date to filter transactions. Format yyyy-mm-dd",
																	"disabled": true
																},
																{
																	"key": "order",
																	"value": "ASC",
																	"description": "Optional ordering parameter which accepts ASC or DESC. If not specified it will default to ASC"
																},
																{
																	"key": "orderBy",
																	"value": "createdAtUtc",
																	"description": "Optional field to order transactions by"
																},
																{
																	"key": "transactionType",
																	"value": "MANUAL_OUTBOUND_PAYMENT",
																	"description": "Optional transaction type filter",
																	"disabled": true
																},
																{
																	"key": "subTransactionType",
																	"value": "<string>",
																	"description": "Optional client transaction type filter",
																	"disabled": true
																},
																{
																	"key": "fromAmount",
																	"value": "<number>",
																	"description": "Optional from amount filter",
																	"disabled": true
																},
																{
																	"key": "toAmount",
																	"value": "<number>",
																	"description": "Optional to amount filter",
																	"disabled": true
																},
																{
																	"key": "reference",
																	"value": "<string>",
																	"description": "Optional reference filter",
																	"disabled": true
																},
																{
																	"key": "mandateId",
																	"value": "<string>",
																	"description": "The unique identifier for the related mandate.",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "walletId",
																	"value": "{{walletId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Gets a detailed view of a specific wallet",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets",
												":walletId"
											],
											"variable": [
												{
													"key": "walletId",
													"value": "{{walletId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"state\": \"SUSPENDED_IN\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"type\": \"SECONDARY\",\n  \"currency\": \"GBP\",\n  \"availableBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"2\"\n  },\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"24218\"\n  },\n  \"createdAt\": \"<dateTime>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAt\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"default\": \"<boolean>\",\n  \"walletSettings\": {\n    \"id\": \"<string>\",\n    \"generalSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"code\": \"<string>\",\n      \"name\": \"<string>\",\n      \"allowedCurrencies\": [\n        \"GBP\",\n        \"GBP\"\n      ]\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71618781474\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MAY\",\n      \"cumulativeRateValue\": \"<number>\"\n    }\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Amends a wallet, enabled or disable a wallet using this endpoint or amend the wallet name with the specified name",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets",
												":walletId"
											],
											"variable": [
												{
													"key": "walletId",
													"value": "{{walletId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"state\": \"SUSPENDED_IN\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"type\": \"SECONDARY\",\n  \"currency\": \"GBP\",\n  \"availableBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"2\"\n  },\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"24218\"\n  },\n  \"createdAt\": \"<dateTime>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAt\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"default\": \"<boolean>\",\n  \"walletSettings\": {\n    \"id\": \"<string>\",\n    \"generalSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"code\": \"<string>\",\n      \"name\": \"<string>\",\n      \"allowedCurrencies\": [\n        \"GBP\",\n        \"GBP\"\n      ]\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71618781474\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MAY\",\n      \"cumulativeRateValue\": \"<number>\"\n    }\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"name\": \"xEjxm\",\n  \"paymentLimits\": {\n    \"transaction\": \"/16064/\",\n    \"daily\": \"/2/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/7852/\",\n    \"daily\": \"/295678506/\"\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/wallets/:walletId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"wallets",
														":walletId"
													],
													"variable": [
														{
															"key": "walletId",
															"value": "{{walletId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates a wallet with the specified name",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"walletId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/wallets",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"wallets"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"state\": \"SUSPENDED_IN\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"type\": \"SECONDARY\",\n  \"currency\": \"GBP\",\n  \"availableBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"2\"\n  },\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"24218\"\n  },\n  \"createdAt\": \"<dateTime>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAt\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"default\": \"<boolean>\",\n  \"walletSettings\": {\n    \"id\": \"<string>\",\n    \"generalSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"code\": \"<string>\",\n      \"name\": \"<string>\",\n      \"allowedCurrencies\": [\n        \"GBP\",\n        \"GBP\"\n      ]\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71618781474\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MAY\",\n      \"cumulativeRateValue\": \"<number>\"\n    }\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Creates wallet with asset",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"walletId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"CHF\",\n  \"assetId\": \"{{assetId}}\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"FISHER\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/wallets",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"wallets"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"state\": \"SUSPENDED_IN\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"type\": \"SECONDARY\",\n  \"currency\": \"GBP\",\n  \"availableBalance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"2\"\n  },\n  \"balance\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"24218\"\n  },\n  \"createdAt\": \"<dateTime>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAt\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"default\": \"<boolean>\",\n  \"walletSettings\": {\n    \"id\": \"<string>\",\n    \"generalSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"code\": \"<string>\",\n      \"name\": \"<string>\",\n      \"allowedCurrencies\": [\n        \"GBP\",\n        \"GBP\"\n      ]\n    },\n    \"depositInterestSettings\": {\n      \"overridable\": \"<boolean>\",\n      \"enabled\": \"<boolean>\",\n      \"rateType\": \"FIXED\",\n      \"rateValue\": \"<number>\",\n      \"accruedPeriodType\": \"YEAR\",\n      \"accruedPeriodValue\": \"<number>\",\n      \"calculatedOnBalanceType\": \"END_OF_DAY_BALANCE\",\n      \"postedPeriodType\": \"DAY\",\n      \"postedPeriodValue\": \"<number>\",\n      \"daysInYearType\": \"ACTUAL_360\",\n      \"nonWorkingDaysType\": \"<string>\",\n      \"interestBearingThreshold\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"71618781474\"\n      },\n      \"postingScheduleType\": \"FIXED_SCHEDULE\",\n      \"rateSourceId\": \"<string>\",\n      \"rateSourceIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYEE\"\n      },\n      \"accruedPeriodOnDayOfWeek\": \"SATURDAY\",\n      \"accruedPeriodOnDayOfMonth\": \"<number>\",\n      \"accruedPeriodOnMonth\": \"SEPTEMBER\",\n      \"postedPeriodOnDayOfWeek\": \"SUNDAY\",\n      \"postedPeriodOnDayOfMonth\": \"<number>\",\n      \"postedPeriodOnMonth\": \"MAY\",\n      \"cumulativeRateValue\": \"<number>\"\n    }\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"{{RandomWord}} Wallet\",\n  \"currency\": \"GBP\",\n  \"accountId\": \"{{accountId}}\",\n  \"secondaryWalletTypeCode\": \"<string>\",\n  \"paymentLimits\": {\n    \"transaction\": \"/230847/\",\n    \"daily\": \"/4279/\"\n  },\n  \"cardLimits\": {\n    \"transaction\": \"/02507979/\",\n    \"daily\": \"/147/\"\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/wallets",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"wallets"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "adjustment",
					"item": [
						{
							"name": "Adjust the balance of an account",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": false,\n  \"reconcile\": false\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/adjustment",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"adjustment"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"21488991072\"\n  },\n  \"reference\": \"<string>\",\n  \"debitCreditCode\": \"DBIT\",\n  \"transactionType\": \"DOMESTIC_ATM_FX_FEE\",\n  \"impactedLedger\": {\n    \"accountId\": \"c66aA7bc-B5EF-4A5D-be1f-3CD2FddAb3f0\",\n    \"accountVersion\": \"<integer>\",\n    \"wallet\": {\n      \"id\": \"1D6BE8A3-3b3d-45fF-b8ee-a982Ef0a8AFd\",\n      \"availableBalance\": \"<string>\",\n      \"balance\": \"<string>\"\n    }\n  },\n  \"subTransactionType\": \"<string>\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "cards",
					"item": [
						{
							"name": "{cardId}",
							"item": [
								{
									"name": "Gets a specific card",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards/:cardId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards",
												":cardId"
											],
											"variable": [
												{
													"key": "cardId",
													"value": "{{cardId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Updates a card",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards/:cardId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards",
												":cardId"
											],
											"variable": [
												{
													"key": "cardId",
													"value": "{{cardId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Delete a card",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards/:cardId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards",
												":cardId"
											],
											"variable": [
												{
													"key": "cardId",
													"value": "{{cardId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates a card",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"cardId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"personId\": \"{{personId}}\",\n  \"cardProcessor\": \"GPS\",\n  \"walletId\": \"{{walletId}}\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": true\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/cards",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"cards"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "assets",
					"item": [
						{
							"name": "{assetId}",
							"item": [
								{
									"name": "prices",
									"item": [
										{
											"name": "{assetPriceId}",
											"item": [
												{
													"name": "Gets a specific asset price",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/assets/:assetId/prices/:assetPriceId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"assets",
																":assetId",
																"prices",
																":assetPriceId"
															],
															"variable": [
																{
																	"key": "assetId",
																	"value": "{{assetId}}"
																},
																{
																	"key": "assetPriceId",
																	"value": "{{assetPriceId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												},
												{
													"name": "Gets a specific asset price history",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"key": "changesOnly",
																"value": "true",
																"type": "text"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/internal/assets/:assetId/prices/:assetPriceId/history",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"internal",
																"assets",
																":assetId",
																"prices",
																":assetPriceId",
																"history"
															],
															"variable": [
																{
																	"key": "assetId",
																	"value": "{{assetId}}"
																},
																{
																	"key": "assetPriceId",
																	"value": "{{assetPriceId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												},
												{
													"name": "Updates an asset price",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "PUT",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>",
																"disabled": true
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"bid\": \"{{RandomNumber}}\",\n  \"ask\": \"{{RandomNumber}}\",\n  \"validFromUtc\": \"2023-11-11T13:38:13.065Z\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/assets/:assetId/prices/:assetPriceId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"assets",
																":assetId",
																"prices",
																":assetPriceId"
															],
															"variable": [
																{
																	"key": "assetId",
																	"value": "{{assetId}}"
																},
																{
																	"key": "assetPriceId",
																	"value": "16663d14-b166-45b1-838e-bc268f700667"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Bad Request",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Bad Request",
															"code": 400,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Conflict",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Conflict",
															"code": 409,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "PATCH",
																"header": [
																	{
																		"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																		"key": "X-Digital-Signature",
																		"value": "<string>"
																	},
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Content-Type",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"body": {
																	"mode": "raw",
																	"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
																	"options": {
																		"raw": {
																			"headerFamily": "json",
																			"language": "json"
																		}
																	}
																},
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												},
												{
													"name": "Deletes an asset price",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/assets/:assetId/prices/:assetPriceId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"assets",
																":assetId",
																"prices",
																":assetPriceId"
															],
															"variable": [
																{
																	"key": "assetId",
																	"value": "{{assetId}}"
																},
																{
																	"key": "assetPriceId",
																	"value": "{{assetPriceId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Bad Request",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Bad Request",
															"code": 400,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Conflict",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Conflict",
															"code": 409,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "DELETE",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												}
											]
										},
										{
											"name": "Gets an asset's prices",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/assets/:assetId/prices",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"assets",
														":assetId",
														"prices"
													],
													"variable": [
														{
															"key": "assetId",
															"value": "{{assetId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
												},
												{
													"name": "Unauthorized",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Creates an asset price",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    pm.environment.set(\"assetPriceId\", responseBody.id);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"bid\": {\n    \"amount\": \"19\",\n    \"currency\": \"CHF\"\n  },\n  \"ask\":  {\n    \"amount\": \"19\",\n    \"currency\": \"CHF\"\n  },\n    \"validFromUtc\": \"2024-01-24T00:00:00.000Z\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/assets/:assetId/prices",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"assets",
														":assetId",
														"prices"
													],
													"variable": [
														{
															"key": "assetId",
															"value": "{{assetId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Unauthorized",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Gets a specific asset",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/assets/:assetId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"assets",
												":assetId"
											],
											"variable": [
												{
													"key": "assetId",
													"value": "{{assetId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Gets a specific asset history",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/assets/:assetId/history",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"assets",
												":assetId",
												"history"
											],
											"variable": [
												{
													"key": "assetId",
													"value": "{{assetId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Updates an asset",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PUT",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/assets/:assetId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"assets",
												":assetId"
											],
											"variable": [
												{
													"key": "assetId",
													"value": "{{assetId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Deletes an asset",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/assets/:assetId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"assets",
												":assetId"
											],
											"variable": [
												{
													"key": "assetId",
													"value": "{{assetId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Creates an asset",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"assetId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomWord}}\",\n  \"class\": \"EQUITIES\",\n  \"subClass\": \"EQUITIES_ETF\",\n  \"ISIN\": \"{{RandomISIN}}\",\n  \"currency\": \"CHF\",\n  \"state\": \"ACTIVE\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/assets",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"assets"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Get assets",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/assets",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"assets"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Asset Wallet Adjustment - Buy",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"assetTransactionPrice\": \"150\",\n  \"transactionType\": \"MANUAL_ADJUSTMENT\",\n  \"subTransactionType\": \"ASSET_QUANTITY_ADJUSTMENT\",\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/adjustment",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"adjustment"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"21488991072\"\n  },\n  \"reference\": \"<string>\",\n  \"debitCreditCode\": \"DBIT\",\n  \"transactionType\": \"DOMESTIC_ATM_FX_FEE\",\n  \"impactedLedger\": {\n    \"accountId\": \"c66aA7bc-B5EF-4A5D-be1f-3CD2FddAb3f0\",\n    \"accountVersion\": \"<integer>\",\n    \"wallet\": {\n      \"id\": \"1D6BE8A3-3b3d-45fF-b8ee-a982Ef0a8AFd\",\n      \"availableBalance\": \"<string>\",\n      \"balance\": \"<string>\"\n    }\n  },\n  \"subTransactionType\": \"<string>\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Asset Wallet Adjustment - Sell",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"amount\": {\n    \"currency\": \"CHF\",\n    \"amount\": \"5\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"DBIT\",\n  \"assetTransactionPrice\": \"150\",\n  \"transactionType\": \"MANUAL_ADJUSTMENT\",\n  \"subTransactionType\": \"ASSET_QUANTITY_ADJUSTMENT\",\n  \"accountId\": \"f14892df-0f40-4220-a00f-721a1dd2dfae\",\n  \"walletId\": \"884044d0-dd1d-4eb1-947f-37be0baa40d5\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/adjustment",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"adjustment"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"21488991072\"\n  },\n  \"reference\": \"<string>\",\n  \"debitCreditCode\": \"DBIT\",\n  \"transactionType\": \"DOMESTIC_ATM_FX_FEE\",\n  \"impactedLedger\": {\n    \"accountId\": \"c66aA7bc-B5EF-4A5D-be1f-3CD2FddAb3f0\",\n    \"accountVersion\": \"<integer>\",\n    \"wallet\": {\n      \"id\": \"1D6BE8A3-3b3d-45fF-b8ee-a982Ef0a8AFd\",\n      \"availableBalance\": \"<string>\",\n      \"balance\": \"<string>\"\n    }\n  },\n  \"subTransactionType\": \"<string>\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"reference\": \" \",\n  \"debitCreditCode\": \"CRDT\",\n  \"transactionType\": \"EURO_ATM\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"T@P4weGU\",\n  \"valutaUtcTimestamp\": \"<integer>\",\n  \"forceAuthorisation\": \"<boolean>\",\n  \"reconcile\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/adjustment",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"adjustment"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "currency pairs",
					"item": [
						{
							"name": "{currencyPairId}",
							"item": [
								{
									"name": "rates",
									"item": [
										{
											"name": "{rateId}",
											"item": [
												{
													"name": "Get currency pair rate",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/currency-pairs/:currencyPaidId/rates/:rateid",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"currency-pairs",
																":currencyPaidId",
																"rates",
																":rateid"
															],
															"variable": [
																{
																	"key": "currencyPaidId",
																	"value": "{{currencyPairId}}"
																},
																{
																	"key": "rateid",
																	"value": "{{rateId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												},
												{
													"name": "Get currency pair rate history",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/internal/currency-pairs/:currencyPaidId/rates/:rateid/history",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"internal",
																"currency-pairs",
																":currencyPaidId",
																"rates",
																":rateid",
																"history"
															],
															"variable": [
																{
																	"key": "currencyPaidId",
																	"value": "{{currencyPairId}}"
																},
																{
																	"key": "rateid",
																	"value": "{{rateId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												},
												{
													"name": "Delete currency pair rate",
													"event": [
														{
															"listen": "test",
															"script": {
																"exec": [
																	"const response = pm.response;",
																	"",
																	"pm.test(\"Status code is 200\", function () {",
																	"    pm.expect(response).to.have.status(200);",
																	"});",
																	"",
																	"pm.test(\"Sub 2s response\", function () {",
																	"    pm.expect(response.responseTime).to.be.below(2000);",
																	"});"
																],
																"type": "text/javascript"
															}
														}
													],
													"request": {
														"method": "DELETE",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>",
																"disabled": true
															},
															{
																"key": "Accept",
																"value": "application/json"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/currency-pairs/:currencyPaidId/rates/:rateid",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"currency-pairs",
																":currencyPaidId",
																"rates",
																":rateid"
															],
															"variable": [
																{
																	"key": "currencyPaidId",
																	"value": "{{currencyPairId}}"
																},
																{
																	"key": "rateid",
																	"value": "{{rateId}}"
																}
															]
														}
													},
													"response": [
														{
															"name": "Success",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "OK",
															"code": 200,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
														},
														{
															"name": "Unauthorized",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Unauthorized",
															"code": 401,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Forbidden",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Forbidden",
															"code": 403,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
														},
														{
															"name": "Not Found",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"key": "Accept",
																		"value": "application/json"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Not Found",
															"code": 404,
															"_postman_previewlanguage": "json",
															"header": [
																{
																	"key": "Content-Type",
																	"value": "application/json"
																},
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": "{\n  \"message\": \"<string>\"\n}"
														},
														{
															"name": "Server Error",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Internal Server Error",
															"code": 500,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														},
														{
															"name": "Service Unavailable",
															"originalRequest": {
																"method": "GET",
																"header": [
																	{
																		"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																		"key": "X-Correlation-Id",
																		"value": "<string>"
																	},
																	{
																		"description": "Added as a part of security scheme: apikey",
																		"key": "X-App-Medium",
																		"value": "<API Key>"
																	}
																],
																"url": {
																	"raw": "{{coreApiBaseUrl}}/cards/:cardId",
																	"host": [
																		"{{coreApiBaseUrl}}"
																	],
																	"path": [
																		"cards",
																		":cardId"
																	],
																	"variable": [
																		{
																			"key": "cardId",
																			"value": "{{cardId}}"
																		}
																	]
																}
															},
															"status": "Service Unavailable",
															"code": 503,
															"_postman_previewlanguage": "text",
															"header": [
																{
																	"key": "X-Correlation-Id",
																	"value": "",
																	"description": ""
																}
															],
															"cookie": [],
															"body": ""
														}
													]
												}
											]
										},
										{
											"name": "List currency pair rates",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/currency-pairs/:currencyPairId/rates",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"currency-pairs",
														":currencyPairId",
														"rates"
													],
													"query": [
														{
															"key": "pageSize",
															"value": "1",
															"disabled": true
														},
														{
															"key": "pageNumber",
															"value": "4",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "currencyPairId",
															"value": "{{currencyPairId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
												},
												{
													"name": "Unauthorized",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards/:cardId",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards",
																":cardId"
															],
															"variable": [
																{
																	"key": "cardId",
																	"value": "{{cardId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Creates a currency pair rate",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"    const responseBody = response.json();",
															"    pm.environment.set(\"rateId\", responseBody.id);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [],
												"body": {
													"mode": "raw",
													"raw": "{\n    \"rate\": 1.18\n}",
													"options": {
														"raw": {
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/currency-pairs/:currencyPairId/rates",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"currency-pairs",
														":currencyPairId",
														"rates"
													],
													"variable": [
														{
															"key": "currencyPairId",
															"value": "{{currencyPairId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Unauthorized",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/cards",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"cards"
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Get currency pair",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"    const responseBody = response.json();",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/currency-pairs/:currencyPairId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"currency-pairs",
												":currencyPairId"
											],
											"variable": [
												{
													"key": "currencyPairId",
													"value": "{{currencyPairId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Get currency pair history",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"    const responseBody = response.json();",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/currency-pairs/:currencyPairId/history",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"currency-pairs",
												":currencyPairId",
												"history"
											],
											"variable": [
												{
													"key": "currencyPairId",
													"value": "{{currencyPairId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Deletes currency pair",
									"request": {
										"method": "DELETE",
										"header": [],
										"url": {
											"raw": "{{coreApiBaseUrl}}/currency-pairs/:currencyPairId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"currency-pairs",
												":currencyPairId"
											],
											"variable": [
												{
													"key": "currencyPairId",
													"value": "{{currencyPairId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/cards/:cardId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"cards",
														":cardId"
													],
													"variable": [
														{
															"key": "cardId",
															"value": "{{cardId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Create currency pair",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"currencyPairId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"baseCurrency\": \"EUR\",\n  \"quoteCurrency\": \"GBP\",\n  \"state\": \"ACTIVE\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/currency-pairs",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"currency-pairs"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "List currency pairs",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);                                                                                              ",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/currency-pairs",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"currency-pairs"
									],
									"query": [
										{
											"key": "baseCurrency",
											"value": "USD",
											"disabled": true
										},
										{
											"key": "quoteCurrency",
											"value": "GBP",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "1",
											"disabled": true
										},
										{
											"key": "pageNumber",
											"value": "2",
											"disabled": true
										}
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"cardProcessor\": \"ACCOMPLISH\",\n  \"id\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"personIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_USER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"personId\": \"<uuid>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"thirdPartyRequiredFields\": {},\n  \"enabled\": \"<boolean>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/cards",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"cards"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "card-interfaces",
					"item": [
						{
							"name": "{cardInterfaceId}",
							"item": [
								{
									"name": "Gets a third party card interface linked to an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces",
												":cardInterfaceId"
											],
											"variable": [
												{
													"key": "cardInterfaceId",
													"value": "{{cardInterfaceId}}"
												}
											]
										},
										"description": "This endpoint shows the card account token linked to this account"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Enable/disable a third party card interface linked to an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces",
												":cardInterfaceId"
											],
											"variable": [
												{
													"key": "cardInterfaceId",
													"value": "{{cardInterfaceId}}"
												}
											]
										},
										"description": "Use this endpoint to remove any existing third party card processor accounts that should no longer be authorised on this account. \r\n\r\n NOTE: For regulatory reasons if the interface has been used previously within the account, rather than removing the interface this endpoint it will simply disabled it."
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"enabled\": \"<boolean>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{baseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Removes a third party card interface linked to an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces",
												":cardInterfaceId"
											],
											"variable": [
												{
													"key": "cardInterfaceId",
													"value": "{{cardInterfaceId}}"
												}
											]
										},
										"description": "Use this endpoint to remove any existing third party card processor accounts that should no longer be authorised on this account. \r\n\r\n NOTE: For regulatory reasons if the interface has been used previously within the account, rather than removing the interface this endpoint it will simply disabled it."
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"enabled\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/card-interfaces/:cardInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"card-interfaces",
														":cardInterfaceId"
													],
													"variable": [
														{
															"key": "cardInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Adds a third party card interface to an account.",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"cardInterfaceId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"cardAccountIdentifier\": \"{{cardId}}\",\n  \"cardProcessor\": \"GPS\",\n  \"accountId\": \"{{accountId}}\",\n  \"enabled\": true\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/card-interfaces",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"card-interfaces"
									]
								},
								"description": "This endpoint adds card accounts from a third party card processor  and links the card accounts to this account"
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"accountId\": \"<uuid>\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"enabled\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"accountId\": \"<uuid>\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"accountId\": \"<uuid>\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"accountId\": \"<uuid>\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"accountId\": \"<uuid>\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"cardAccountIdentifier\": \"<string>\",\n  \"cardProcessor\": \"MARQETA\",\n  \"accountId\": \"<uuid>\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/card-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"card-interfaces"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "payment-interfaces",
					"item": [
						{
							"name": "{paymentInterfaceId}",
							"item": [
								{
									"name": "Get a third party payment interface linked to an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces",
												":paymentInterfaceId"
											],
											"variable": [
												{
													"key": "paymentInterfaceId",
													"value": "{{paymentInterfaceId}}"
												}
											]
										},
										"description": "This endpoint modifies payment interfaces from a third party"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Enable/disable a third party payment interface to an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "PATCH",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces",
												":paymentInterfaceId"
											],
											"variable": [
												{
													"key": "paymentInterfaceId",
													"value": "{{paymentInterfaceId}}"
												}
											]
										},
										"description": "This endpoint modifies payment interfaces from a third party"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "PATCH",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Removes a third party payment interface linked to an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces",
												":paymentInterfaceId"
											],
											"variable": [
												{
													"key": "paymentInterfaceId",
													"value": "{{paymentInterfaceId}}"
												}
											]
										},
										"description": "Use this endpoint to remove any existing third party card processor accounts that should no longer be authorised on this account. \r\n\r\n NOTE: For regulatory reasons if the interface has been used previously within the account, rather than removing the interface this endpoint it will simply disabled it."
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-interfaces/:paymentInterfaceId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-interfaces",
														":paymentInterfaceId"
													],
													"variable": [
														{
															"key": "paymentInterfaceId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Adds a third party payment interface to an account.",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"paymentInterfaceId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/payment-interfaces",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"payment-interfaces"
									]
								},
								"description": "This endpoint adds payment interfaces from a third party"
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"paymentAccountIdentifier\": \"<string>\",\n  \"paymentProcessor\": \"MODULR\",\n  \"enabled\": \"<boolean>\",\n  \"localisation\": {\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"bic\": \"<string>\",\n    \"upic\": \"<string>\",\n    \"cuid\": \"<string>\"\n  },\n  \"redirectionAccount\": {\n    \"name\": \"<string>\",\n    \"identification\": {\n      \"iban\": \"<string>\",\n      \"bban\": \"<string>\",\n      \"accountNumber\": \"<string>\",\n      \"sortCode\": \"<string>\"\n    }\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"iban\": \"<string>\",\n  \"paymentProcessor\": \"CLEARBANK\",\n  \"enabled\": true\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-interfaces",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-interfaces"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "transactions",
					"item": [
						{
							"name": "{transactionId}",
							"item": [
								{
									"name": "Gets the details of a specific transaction",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"transactions",
												":transactionId"
											],
											"variable": [
												{
													"key": "transactionId",
													"value": "{{transactionId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"transactions",
														":transactionId"
													],
													"variable": [
														{
															"key": "transactionId",
															"value": "{{transactionId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"transactionReference\": \"<string>\",\n  \"transactionType\": \"<string>\",\n  \"debitCreditCode\": \"DBIT\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"<string>\",\n  \"paymentId\": \"<uuid>\",\n  \"creditorName\": \"<string>\",\n  \"counterpartyName\": \"<string>\",\n  \"createdAt\": \"<integer>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"displayDate\": \"<integer>\",\n  \"displayDateUtc\": \"<dateTime>\",\n  \"richdatasource\": \"GPS\",\n  \"richdata\": \"<string>\",\n  \"conversion\": {\n    \"originalAmount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"856553\"\n    },\n    \"currencyCode\": \"GBP\",\n    \"amount\": \"<string>\",\n    \"rate\": \"<string>\",\n    \"source\": \"ACCOMPLISH\"\n  },\n  \"balance\": \"<string>\",\n  \"availableBalance\": \"<string>\",\n  \"paymentInstructionId\": \"<uuid>\",\n  \"fees\": [\n    {\n      \"charge\": {\n        \"percentage\": \"<number>\",\n        \"description\": \"<string>\",\n        \"roundingMethod\": \"Ceil\",\n        \"fixedAmountMethod\": \"Before\",\n        \"fixedAmount\": {\n          \"amount\": \"<string>\",\n          \"currencyCode\": \"GBP\"\n        }\n      },\n      \"fxProvider\": \"<string>\",\n      \"transactionId\": \"<uuid>\",\n      \"totalFeeCharged\": {\n        \"amount\": \"<string>\",\n        \"currencyCode\": \"GBP\"\n      }\n    },\n    {\n      \"charge\": {\n        \"percentage\": \"<number>\",\n        \"description\": \"<string>\",\n        \"roundingMethod\": \"Floor\",\n        \"fixedAmountMethod\": \"After\",\n        \"fixedAmount\": {\n          \"amount\": \"<string>\",\n          \"currencyCode\": \"GBP\"\n        }\n      },\n      \"fxProvider\": \"<string>\",\n      \"transactionId\": \"<uuid>\",\n      \"totalFeeCharged\": {\n        \"amount\": \"<string>\",\n        \"currencyCode\": \"GBP\"\n      }\n    }\n  ],\n  \"mandateId\": \"<string>\",\n  \"scheduledPayment\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"transactions",
														":transactionId"
													],
													"variable": [
														{
															"key": "transactionId",
															"value": "{{transactionId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"transactions",
														":transactionId"
													],
													"variable": [
														{
															"key": "transactionId",
															"value": "{{transactionId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"transactions",
														":transactionId"
													],
													"variable": [
														{
															"key": "transactionId",
															"value": "{{transactionId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"transactions",
														":transactionId"
													],
													"variable": [
														{
															"key": "transactionId",
															"value": "{{transactionId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/transactions/:transactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"transactions",
														":transactionId"
													],
													"variable": [
														{
															"key": "transactionId",
															"value": "{{transactionId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						}
					]
				},
				{
					"name": "pending-transactions",
					"item": [
						{
							"name": "{pendingTransactionId}",
							"item": [
								{
									"name": "Gets the details of a specific pending transaction from the specified account",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"pending-transactions",
												":pendingTransactionId"
											],
											"variable": [
												{
													"key": "pendingTransactionId",
													"value": "{{pendingTransactionId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6300\"\n  },\n  \"transactionReference\": \"<string>\",\n  \"transactionType\": \"<string>\",\n  \"pendingAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"26\"\n  },\n  \"debitCreditCode\": \"CRDT\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"<string>\",\n  \"paymentId\": \"<uuid>\",\n  \"creditorName\": \"<string>\",\n  \"counterpartyName\": \"<string>\",\n  \"createdAt\": \"<integer>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"displayDate\": \"<integer>\",\n  \"displayDateUtc\": \"<dateTime>\",\n  \"richdatasource\": {\n    \"value\": \"<Error: Could not resolve allOf schema\"\n  },\n  \"richdata\": \"<string>\",\n  \"conversion\": {\n    \"originalAmount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"7\"\n    },\n    \"currencyCode\": \"GBP\",\n    \"amount\": \"<string>\",\n    \"rate\": \"<string>\",\n    \"source\": \"MARQETA\"\n  },\n  \"feeDescription\": \"<string>\",\n  \"mandateId\": \"<string>\",\n  \"scheduledPayment\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Requests removal of pending transaction. This will release the money back to the user",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"pending-transactions",
												":pendingTransactionId"
											],
											"variable": [
												{
													"key": "pendingTransactionId",
													"value": "{{pendingTransactionId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"6300\"\n  },\n  \"transactionReference\": \"<string>\",\n  \"transactionType\": \"<string>\",\n  \"pendingAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"26\"\n  },\n  \"debitCreditCode\": \"CRDT\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"subTransactionType\": \"<string>\",\n  \"paymentId\": \"<uuid>\",\n  \"creditorName\": \"<string>\",\n  \"counterpartyName\": \"<string>\",\n  \"createdAt\": \"<integer>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"displayDate\": \"<integer>\",\n  \"displayDateUtc\": \"<dateTime>\",\n  \"richdatasource\": {\n    \"value\": \"<Error: Could not resolve allOf schema\"\n  },\n  \"richdata\": \"<string>\",\n  \"conversion\": {\n    \"originalAmount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"7\"\n    },\n    \"currencyCode\": \"GBP\",\n    \"amount\": \"<string>\",\n    \"rate\": \"<string>\",\n    \"source\": \"MARQETA\"\n  },\n  \"feeDescription\": \"<string>\",\n  \"mandateId\": \"<string>\",\n  \"scheduledPayment\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/pending-transactions/:pendingTransactionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"pending-transactions",
														":pendingTransactionId"
													],
													"variable": [
														{
															"key": "pendingTransactionId",
															"value": "{{pendingTransactionId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						}
					]
				},
				{
					"name": "sub-transaction-types",
					"item": [
						{
							"name": "{subTransactionTypeId}",
							"item": [
								{
									"name": "Get a sub transaction type",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types/:subTransactionTypeId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types",
												":subTransactionTypeId"
											],
											"variable": [
												{
													"key": "subTransactionTypeId",
													"value": "{{subTransactionTypeId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/sub-transaction-types/:subTransactionTypeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"sub-transaction-types",
														":subTransactionTypeId"
													],
													"variable": [
														{
															"key": "subTransactionTypeId",
															"value": "{{subTransactionTypeId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"code\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"description\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/sub-transaction-types/:subTransactionTypeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"sub-transaction-types",
														":subTransactionTypeId"
													],
													"variable": [
														{
															"key": "subTransactionTypeId",
															"value": "{{subTransactionTypeId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/sub-transaction-types/:subTransactionTypeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"sub-transaction-types",
														":subTransactionTypeId"
													],
													"variable": [
														{
															"key": "subTransactionTypeId",
															"value": "{{subTransactionTypeId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/sub-transaction-types/:subTransactionTypeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"sub-transaction-types",
														":subTransactionTypeId"
													],
													"variable": [
														{
															"key": "subTransactionTypeId",
															"value": "{{subTransactionTypeId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Create a sub transaction type",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"subTransactionTypeId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"code\": \"TEST_SUB_TRANSACTION_TYPE_{{RandomNumber}}\",\n  \"description\": \"This is a description of a test sub transaction type\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"sub-transaction-types"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"code\": \"<string>\",\n  \"description\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"code\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"description\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"code\": \"<string>\",\n  \"description\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"code\": \"<string>\",\n  \"description\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"code\": \"<string>\",\n  \"description\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Get sub transaction types",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"sub-transaction-types"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"code\": \"<string>\",\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"description\": \"<string>\"\n    },\n    {\n      \"code\": \"<string>\",\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"description\": \"<string>\"\n    }\n  ]\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/sub-transaction-types",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"sub-transaction-types"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "interest",
					"item": [
						{
							"name": "overdraft-posting",
							"item": [
								{
									"name": "Manually post any overdraft interest accrued for an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"interest",
												"overdraft-posting"
											]
										},
										"description": "Accepts an account ID, and if that account has any accrued overdraft interest then this will be immediately posted."
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"overdraft-posting"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"accepted\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"overdraft-posting"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"overdraft-posting"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"overdraft-posting"
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"overdraft-posting"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/overdraft-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"overdraft-posting"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "fixed-term-deposit-posting",
							"item": [
								{
									"name": "Manually post any FTD interest accrued for an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"interest",
												"fixed-term-deposit-posting"
											]
										},
										"description": "Accepts an account ID, and if that account has any accrued FTD interest then this will be immediately posted."
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"accepted\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "cashback-reward-posting",
							"item": [
								{
									"name": "Manually post any cashback accrued for an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"interest",
												"fixed-term-deposit-posting"
											]
										},
										"description": "Accepts an account ID, and if that account has any accrued FTD interest then this will be immediately posted."
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"accepted\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/fixed-term-deposit-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"fixed-term-deposit-posting"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "secondary-wallet-posting",
							"item": [
								{
									"name": "Manually post any secondary wallet interest accrued for an account.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"interest",
												"secondary-wallet-posting"
											]
										},
										"description": "Accepts an account ID, and if that account has any secondary wallet interest then this will be immediately posted. Can also provide optional walletId, to post interest for specific secondary wallet on account."
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"secondary-wallet-posting"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"accepted\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"secondary-wallet-posting"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"secondary-wallet-posting"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"secondary-wallet-posting"
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"secondary-wallet-posting"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/interest/secondary-wallet-posting",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"interest",
														"secondary-wallet-posting"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						}
					]
				},
				{
					"name": "payees",
					"item": [
						{
							"name": "{payeeId}",
							"item": [
								{
									"name": "Get payee associated with an account",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees",
												":payeeId"
											],
											"variable": [
												{
													"key": "payeeId",
													"value": "{{payeeId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"accountType\": \"INSTITUTION\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"createdBy\": \"<uuid>\",\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"institutionalAccountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  },\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ORGANISATION\"\n  },\n  \"state\": \"ACTIVE\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"YE\",\n  \"reference\": \"nB 67 P\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Delete a payee from an account",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees",
												":payeeId"
											],
											"variable": [
												{
													"key": "payeeId",
													"value": "{{payeeId}}"
												}
											]
										},
										"description": "Delete payee"
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accountId\": \"<uuid>\",\n  \"accountType\": \"INSTITUTION\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"createdBy\": \"<uuid>\",\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"institutionalAccountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  },\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ORGANISATION\"\n  },\n  \"state\": \"ACTIVE\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"YE\",\n  \"reference\": \"nB 67 P\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payees/:payeeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payees",
														":payeeId"
													],
													"variable": [
														{
															"key": "payeeId",
															"value": "{{payeeId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Create a payee for an account (Account Number & Sort Code)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"payeeId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomWord}} Test Payee\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"{{accountId}}\",\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"county\": \"\",\n  \"postCode\": \"{{RandomNumber}}{{RandomWord}}{{RandomNumber}}\",\n  \"country\": \"GB\",\n  \"reference\": \"Test Reference\",\n  \"accountNumber\": \"00378894\",\n  \"sortCode\": \"110739\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/payees",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"payees"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"accountType\": \"INSTITUTION\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"createdBy\": \"<uuid>\",\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"institutionalAccountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  },\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ORGANISATION\"\n  },\n  \"state\": \"ACTIVE\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"YE\",\n  \"reference\": \"nB 67 P\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Create a payee for an account (IBAN)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"payeeId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"name\": \"{{RandomWord}} Test Payee\",\n  \"payeeType\": \"IBAN\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"{{accountId}}\",\n  \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n  \"addressLine2\": \"\",\n  \"city\": \"{{RandomWord}} City\",\n  \"county\": \"\",\n  \"postCode\": \"{{RandomNumber}}{{RandomWord}}{{RandomNumber}}\",\n  \"country\": \"GB\",\n  \"reference\": \"Test Reference\",\n  \"iban\": \"GB29NWBK60161331926819\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/payees",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"payees"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accountId\": \"<uuid>\",\n  \"accountType\": \"INSTITUTION\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"createdBy\": \"<uuid>\",\n  \"id\": \"<uuid>\",\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"institutionalAccountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PAYMENT\"\n  },\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ORGANISATION\"\n  },\n  \"state\": \"ACTIVE\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"YE\",\n  \"reference\": \"nB 67 P\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"name\": \"<string>\",\n  \"payeeType\": \"UK\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"addressLine1\": \"<string>\",\n  \"addressLine2\": \"<string>\",\n  \"city\": \"<string>\",\n  \"county\": \"<string>\",\n  \"postCode\": \"<string>\",\n  \"country\": \"KY\",\n  \"reference\": \"L \\r)j %\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payees"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "payment-orders",
					"item": [
						{
							"name": "{paymentOrderId}",
							"item": [
								{
									"name": "approve",
									"item": [
										{
											"name": "Approve Payment Order",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId",
														"approve"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Unauthorised",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Unauthorized",
													"code": 401,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/approve",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"approve"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "reject",
									"item": [
										{
											"name": "Reject Payment Order",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"reason\": \"<string>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId",
														"reject"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"reject"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"reject"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"reject"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"reject"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"reject"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/reject",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"reject"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "cancel",
									"item": [
										{
											"name": "Cancel Payment Order",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"reason\": \"<string>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId",
														"cancel"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"cancel"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"cancel"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"cancel"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"cancel"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"cancel"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reason\": \"<string>\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"cancel"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "payments",
									"item": [
										{
											"name": "Get Payment Order payments",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId",
														"payments"
													],
													"query": [
														{
															"key": "pageNumber",
															"value": "<integer>",
															"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
															"disabled": true
														},
														{
															"key": "pageSize",
															"value": "<integer>",
															"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
															"disabled": true
														},
														{
															"key": "state",
															"value": "ACCEPTED",
															"description": "(Required) ",
															"disabled": true
														}
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) ",
																	"disabled": true
																}
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"0\"\n      },\n      \"reference\": \"&>\",\n      \"scheme\": \"FPS\",\n      \"schedule\": {\n        \"frequency\": \"MONTHLY\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"AL\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PRODUCT_ISSUE\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4516301499\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"CHAPS\",\n      \"schedule\": {\n        \"frequency\": \"MONTHLY\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"USER\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"SR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"SWISSCOM\"\n      }\n    }\n  ]\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments?state=ACCEPTED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) "
																}
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments?state=ACCEPTED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) "
																}
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments?state=ACCEPTED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) "
																}
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments?state=ACCEPTED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) "
																}
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "GET",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments?state=ACCEPTED",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"query": [
																{
																	"key": "pageNumber",
																	"value": "<integer>",
																	"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
																	"disabled": true
																},
																{
																	"key": "pageSize",
																	"value": "<integer>",
																	"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
																	"disabled": true
																},
																{
																	"key": "state",
																	"value": "ACCEPTED",
																	"description": "(Required) "
																}
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										},
										{
											"name": "Delete pending payments for a Payment Order",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "DELETE",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId",
														"payments"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Successful response",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														}
													],
													"cookie": [],
													"body": "{\n  \"deleted\": \"<number>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "DELETE",
														"header": [
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"url": {
															"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId/payments",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"payment-orders",
																":paymentOrderId",
																"payments"
															],
															"variable": [
																{
																	"key": "paymentOrderId",
																	"value": "{{paymentOrderId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Get Payment Order",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders",
												":paymentOrderId"
											],
											"variable": [
												{
													"key": "paymentOrderId",
													"value": "{{paymentOrderId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders/:paymentOrderId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders",
														":paymentOrderId"
													],
													"variable": [
														{
															"key": "paymentOrderId",
															"value": "{{paymentOrderId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "UK OB",
							"item": [
								{
									"name": "UK OB EvryDay",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"",
													"const payload = pm.response.json();",
													"pm.environment.set(\"uxPaymentOrderId\", payload.id);"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"accountId\": \"{{uxAccountId}}\",\n    \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n    \"accountType\": \"CUSTOMER\",\n    \"scheme\": \"FPS\",\n    \"name\": \"{{$randomWord}}\",\n    \"expiresAtUtc\": \"2023-12-22T14:37:11.036Z\",\n    \"customerAddress\": {\n        \"addressLine1\": \"221B Baker Street\",\n        \"addressLine2\": \"Appartment C\",\n        \"city\": \"London\",\n        \"county\": \"string\",\n        \"country\": \"GB\",\n        \"postCode\": \"EC2\"\n    },\n    \"schedule\": {\n        \"type\": \"UK_OB_FREQUENCY\",\n        \"frequency\": \"EvryDay\",\n        \"startDate\": \"2023-10-10\"\n    },\n    \"payments\": [\n        {\n            \"payeeId\": \"{{uxPayeeId}}\",\n            \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n            \"amount\": {\n                \"currency\": \"GBP\",\n                \"amount\": \"10\"\n            }\n        }\n    ]\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{uxApiBaseUrl}}/payment-orders",
											"host": [
												"{{uxApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"response": []
								},
								{
									"name": "UK OB EvryWorkgDay",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"",
													"const payload = pm.response.json();",
													"pm.environment.set(\"uxPaymentOrderId\", payload.id);"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"accountId\": \"{{uxAccountId}}\",\n    \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n    \"accountType\": \"CUSTOMER\",\n    \"scheme\": \"FPS\",\n    \"name\": \"{{$randomWord}}\",\n    \"expiresAtUtc\": \"2023-12-22T14:37:11.036Z\",\n    \"customerAddress\": {\n        \"addressLine1\": \"221B Baker Street\",\n        \"addressLine2\": \"Appartment C\",\n        \"city\": \"London\",\n        \"county\": \"string\",\n        \"country\": \"GB\",\n        \"postCode\": \"EC2\"\n    },\n    \"schedule\": {\n        \"type\": \"UK_OB_FREQUENCY\",\n        \"frequency\": \"EvryWorkgDay\",\n        \"startDate\": \"2023-10-10\"\n    },\n    \"payments\": [\n        {\n            \"payeeId\": \"{{uxPayeeId}}\",\n            \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n            \"amount\": {\n                \"currency\": \"GBP\",\n                \"amount\": \"10\"\n            }\n        }\n    ]\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{uxApiBaseUrl}}/payment-orders",
											"host": [
												"{{uxApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"response": []
								},
								{
									"name": "UK OB IntrvlDay",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"",
													"const payload = pm.response.json();",
													"pm.environment.set(\"uxPaymentOrderId\", payload.id);"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"accountId\": \"{{uxAccountId}}\",\n    \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n    \"accountType\": \"CUSTOMER\",\n    \"scheme\": \"FPS\",\n    \"name\": \"{{$randomWord}}\",\n    \"expiresAtUtc\": \"2023-12-22T14:37:11.036Z\",\n    \"customerAddress\": {\n        \"addressLine1\": \"221B Baker Street\",\n        \"addressLine2\": \"Appartment C\",\n        \"city\": \"London\",\n        \"county\": \"string\",\n        \"country\": \"GB\",\n        \"postCode\": \"EC2\"\n    },\n    \"schedule\": {\n        \"type\": \"UK_OB_FREQUENCY\",\n        \"frequency\": \"IntrvlDay:15\",\n        \"startDate\": \"2023-10-10\"\n    },\n    \"payments\": [\n        {\n            \"payeeId\": \"{{uxPayeeId}}\",\n            \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n            \"amount\": {\n                \"currency\": \"GBP\",\n                \"amount\": \"10\"\n            }\n        }\n    ]\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{uxApiBaseUrl}}/payment-orders",
											"host": [
												"{{uxApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"response": []
								},
								{
									"name": "UK OB IntrvlWkDay",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"",
													"const payload = pm.response.json();",
													"pm.environment.set(\"uxPaymentOrderId\", payload.id);"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"accountId\": \"{{uxAccountId}}\",\n    \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n    \"accountType\": \"CUSTOMER\",\n    \"scheme\": \"FPS\",\n    \"name\": \"{{$randomWord}}\",\n    \"expiresAtUtc\": \"2023-12-22T14:37:11.036Z\",\n    \"customerAddress\": {\n        \"addressLine1\": \"221B Baker Street\",\n        \"addressLine2\": \"Appartment C\",\n        \"city\": \"London\",\n        \"county\": \"string\",\n        \"country\": \"GB\",\n        \"postCode\": \"EC2\"\n    },\n    \"schedule\": {\n        \"type\": \"UK_OB_FREQUENCY\",\n        \"frequency\": \"IntrvlWkDay:01:03\",\n        \"startDate\": \"2023-10-10\"\n    },\n    \"payments\": [\n        {\n            \"payeeId\": \"{{uxPayeeId}}\",\n            \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n            \"amount\": {\n                \"currency\": \"GBP\",\n                \"amount\": \"10\"\n            }\n        }\n    ]\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{uxApiBaseUrl}}/payment-orders",
											"host": [
												"{{uxApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"response": []
								},
								{
									"name": "UK OB IntrvlMnthDay",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"",
													"const payload = pm.response.json();",
													"pm.environment.set(\"uxPaymentOrderId\", payload.id);"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"accountId\": \"{{uxAccountId}}\",\n    \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n    \"accountType\": \"CUSTOMER\",\n    \"scheme\": \"FPS\",\n    \"name\": \"{{$randomWord}}\",\n    \"expiresAtUtc\": \"2023-12-22T14:37:11.036Z\",\n    \"customerAddress\": {\n        \"addressLine1\": \"221B Baker Street\",\n        \"addressLine2\": \"Appartment C\",\n        \"city\": \"London\",\n        \"county\": \"string\",\n        \"country\": \"GB\",\n        \"postCode\": \"EC2\"\n    },\n    \"schedule\": {\n        \"type\": \"UK_OB_FREQUENCY\",\n        \"frequency\": \"IntrvlMnthDay:02:-01\",\n        \"startDate\": \"2023-10-10\"\n    },\n    \"payments\": [\n        {\n            \"payeeId\": \"{{uxPayeeId}}\",\n            \"reference\": \"{{$randomWord}} {{$randomWord}}\",\n            \"amount\": {\n                \"currency\": \"GBP\",\n                \"amount\": \"10\"\n            }\n        }\n    ]\n}",
											"options": {
												"raw": {
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{uxApiBaseUrl}}/payment-orders",
											"host": [
												"{{uxApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"response": []
								},
								{
									"name": "UK OB QtrDay:ENGLISH",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"    const responseBody = response.json();",
													"    pm.environment.set(\"paymentOrderId\", responseBody.id);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"FPS\",\n  \"name\": \"{{randomWord}}\",\n  \"accountType\": \"CUSTOMER\",\n  \"walletId\": \"{{walletId}}\",\n  \"customerAddress\": {\n    \"addressLine1\": \"221B Baker Street\",\n    \"city\": \"London\",\n    \"country\": \"GB\",\n    \"postCode\": \"EC2\"\n  },\n  \"expiresAtUtc\": \"2023-11-30T13:22:07.758Z\",\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"GBP\",\n        \"amount\": \"100\"\n      },\n      \"reference\": \"{{randomWord}}\",\n      \"payeeId\": \"{{payeeId}}\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"dolor50\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"magna_f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\",\n  \"paymentErrors\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"92646638140\"\n      },\n      \"reference\": \"+v LM\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"WF\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3283120150\"\n      },\n      \"reference\": \"{0r\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"RU\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders"
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/payment-orders",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payment-orders"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Create Payment Order",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"paymentOrderId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/payment-orders",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"payment-orders"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"dolor50\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"magna_f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\",\n  \"paymentErrors\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"92646638140\"\n      },\n      \"reference\": \"+v LM\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"WF\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3283120150\"\n      },\n      \"reference\": \"{0r\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"RU\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Create Payment Order - 1 payment - payee entity",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"paymentOrderId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"FPS\",\n  \"name\": \"{{randomWord}}\",\n  \"accountType\": \"CUSTOMER\",\n  \"walletId\": \"{{walletId}}\",\n  \"customerAddress\": {\n    \"addressLine1\": \"221B Baker Street\",\n    \"city\": \"London\",\n    \"country\": \"GB\",\n    \"postCode\": \"EC2\"\n  },\n  \"expiresAtUtc\": \"2023-12-30T13:22:07.758Z\",\n  \"payments\": [\n    {\n      \"reference\": \"Test\",\n      \"amount\": {\n        \"currency\": \"GBP\",\n        \"amount\": \"100\"\n      },\n      \"payeeId\": \"{{payeeId}}\",\n      \"metadata\": {\"a\": \"yes\"}\n    }\n  ]\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/payment-orders",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"payment-orders"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"dolor50\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"magna_f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\",\n  \"paymentErrors\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"92646638140\"\n      },\n      \"reference\": \"+v LM\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"WF\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3283120150\"\n      },\n      \"reference\": \"{0r\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"RU\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Create Payment Order - 1 payment - inline payee",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"paymentOrderId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"FPS\",\n  \"name\": \"{{randomWord}}\",\n  \"accountType\": \"CUSTOMER\",\n  \"walletId\": \"{{walletId}}\",\n  \"customerAddress\": {\n    \"addressLine1\": \"221B Baker Street\",\n    \"city\": \"London\",\n    \"country\": \"GB\",\n    \"postCode\": \"EC2\"\n  },\n  \"expiresAtUtc\": \"2023-11-30T13:22:07.758Z\",\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"GBP\",\n        \"amount\": \"100\"\n      },\n      \"reference\": \"{{randomWord}}\",\n        \"payee\": {\n        \"name\": \"{{RandomWord}} Test Payee\",\n        \"payeeType\": \"UK\",\n        \"accountType\": \"CUSTOMER\",\n        \"accountId\": \"{{accountId}}\",\n        \"addressLine1\": \"{{RandomNumber}} {{RandomWord}} Street\",\n        \"addressLine2\": \"\",\n        \"city\": \"{{RandomWord}} City\",\n        \"county\": \"\",\n        \"postCode\": \"{{RandomNumber}}{{RandomWord}}{{RandomNumber}}\",\n        \"country\": \"GB\",\n        \"reference\": \"Test Reference\",\n        \"accountNumber\": \"00378894\",\n        \"sortCode\": \"110739\"\n      },\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/payment-orders",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"payment-orders"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<uuid>\",\n  \"accountType\": \"CUSTOMER\",\n  \"accountId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"CUSTOMER\"\n  },\n  \"walletId\": \"<uuid>\",\n  \"walletIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"USER\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"109144730\"\n  },\n  \"name\": \"<string>\",\n  \"scheme\": \"FPS\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"KP\",\n    \"postCode\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"addressLine2\": \"<string>\",\n    \"county\": \"<string>\",\n    \"type\": \"<string>\",\n    \"fromDate\": \"9037-67-59\",\n    \"toDate\": \"7202-70-36\",\n    \"personId\": \"<string>\",\n    \"organisationId\": \"<string>\"\n  },\n  \"scheduled\": \"<boolean>\",\n  \"bulk\": \"<boolean>\",\n  \"schedule\": {\n    \"frequency\": \"ANNUALLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"metadata\": {},\n  \"state\": \"PENDING_APPROVAL\",\n  \"createdBy\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"payments\": [\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"48\"\n      },\n      \"reference\": \"﻿iQnllWU\",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"SUBMITTED\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"PAYMENT\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"UZ\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    },\n    {\n      \"id\": \"<uuid>\",\n      \"createdAtUtc\": \"<dateTime>\",\n      \"updatedAtUtc\": \"<dateTime>\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"accountId\": \"<uuid>\",\n      \"walletId\": \"<uuid>\",\n      \"accountIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"ACCOUNT\"\n      },\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"4734595\"\n      },\n      \"reference\": \" \",\n      \"scheme\": \"SIC\",\n      \"schedule\": {\n        \"frequency\": \"ONCE\",\n        \"startDate\": \"<date>\",\n        \"type\": \"SIMPLE_FREQUENCY\",\n        \"endDate\": \"<date>\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"state\": \"MONITORING_HELD\",\n      \"payeeId\": \"<uuid>\",\n      \"payeeIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE_SOURCE\"\n      },\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"GR\"\n      },\n      \"transactionMonitoring\": {\n        \"transactionMonitoringMetadata\": \"<string>\",\n        \"transactionMonitoringProvider\": \"CLEARBANK\"\n      }\n    }\n  ],\n  \"feeState\": \"NO_FEE\",\n  \"feeAmount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"8\"\n  },\n  \"feeId\": \"<uuid>\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"approvalsRequired\": \"<number>\",\n  \"approval1By\": \"<uuid>\",\n  \"approval1ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"MIGRATION\"\n  },\n  \"approval1AtUtc\": \"<dateTime>\",\n  \"approval2By\": \"<uuid>\",\n  \"approval2ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval2AtUtc\": \"<dateTime>\",\n  \"approval3By\": \"<uuid>\",\n  \"approval3ByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"WALLET\"\n  },\n  \"approval3AtUtc\": \"<dateTime>\",\n  \"rejectedBy\": \"<uuid>\",\n  \"rejectedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"RATE_SOURCE\"\n  },\n  \"rejectedAtUtc\": \"<dateTime>\",\n  \"rejectedReason\": \"<string>\",\n  \"cancelledAtUtc\": \"<dateTime>\",\n  \"cancelledReason\": \"<string>\",\n  \"submittedAtUtc\": \"<dateTime>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"dolor50\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"magna_f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\",\n  \"paymentErrors\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"92646638140\"\n      },\n      \"reference\": \"+v LM\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"WF\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"3283120150\"\n      },\n      \"reference\": \"{0r\",\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {},\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"RU\"\n      },\n      \"errors\": [\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        },\n        {\n          \"field\": \"<string>\",\n          \"error\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"scheme\": \"SIC\",\n  \"expiresAtUtc\": \"<dateTime>\",\n  \"name\": \"<string>\",\n  \"accountType\": \"INSTITUTION\",\n  \"walletId\": \"<uuid>\",\n  \"customerAddress\": {\n    \"addressLine1\": \"<string>\",\n    \"city\": \"<string>\",\n    \"country\": \"CI\",\n    \"postCode\": \"<string>\",\n    \"addressLine2\": \"<string>\"\n  },\n  \"schedule\": {\n    \"frequency\": \"TWO_WEEKLY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"payments\": [\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"75420977\"\n      },\n      \"reference\": \"e 7R!4\\n@\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"UK\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"EE\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    },\n    {\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"364\"\n      },\n      \"reference\": \"q:C\",\n      \"id\": \"<uuid>\",\n      \"payeeId\": \"<uuid>\",\n      \"payee\": {\n        \"name\": \"<string>\",\n        \"accountNumber\": \"<string>\",\n        \"sortCode\": \"<string>\",\n        \"iban\": \"<string>\",\n        \"payeeType\": \"IBAN\",\n        \"addressLine1\": \"<string>\",\n        \"addressLine2\": \"<string>\",\n        \"city\": \"<string>\",\n        \"county\": \"<string>\",\n        \"postCode\": \"<string>\",\n        \"country\": \"TH\"\n      },\n      \"subTransactionType\": \"<string>\",\n      \"metadata\": {}\n    }\n  ],\n  \"metadata\": {}\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/payment-orders",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payment-orders"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "payments",
					"item": [
						{
							"name": "{paymentId}",
							"item": [
								{
									"name": "Retreive a payment from an account",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payments",
												":paymentId"
											],
											"variable": [
												{
													"key": "paymentId",
													"value": "{{paymentId}}"
												}
											]
										},
										"description": "Retreive a payment using the specified payment id."
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"paymentOrderId\": \"<uuid>\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"4543\"\n  },\n  \"reference\": \" \\nM\\f13/h4h\",\n  \"scheme\": \"CHAPS\",\n  \"schedule\": {\n    \"frequency\": \"DAILY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"subTransactionType\": \"<string>\",\n  \"metadata\": {},\n  \"state\": \"MONITORING_HELD\",\n  \"payeeId\": \"<uuid>\",\n  \"payeeIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"payee\": {\n    \"name\": \"<string>\",\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"payeeType\": \"IBAN\",\n    \"addressLine1\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"county\": \"<string>\",\n    \"postCode\": \"<string>\",\n    \"country\": \"OM\"\n  },\n  \"transactionMonitoring\": {\n    \"transactionMonitoringMetadata\": \"<string>\",\n    \"transactionMonitoringProvider\": \"CLEARBANK\"\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								},
								{
									"name": "Delete a pending payment",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "DELETE",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"payments",
												":paymentId"
											],
											"variable": [
												{
													"key": "paymentId",
													"value": "{{paymentId}}"
												}
											]
										},
										"description": "Delete a pending payment using the specified payment id."
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<uuid>\",\n  \"createdAtUtc\": \"<dateTime>\",\n  \"updatedAtUtc\": \"<dateTime>\",\n  \"paymentOrderId\": \"<uuid>\",\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"accountIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n  },\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"4543\"\n  },\n  \"reference\": \" \\nM\\f13/h4h\",\n  \"scheme\": \"CHAPS\",\n  \"schedule\": {\n    \"frequency\": \"DAILY\",\n    \"startDate\": \"<date>\",\n    \"type\": \"SIMPLE_FREQUENCY\",\n    \"endDate\": \"<date>\"\n  },\n  \"subTransactionType\": \"<string>\",\n  \"metadata\": {},\n  \"state\": \"MONITORING_HELD\",\n  \"payeeId\": \"<uuid>\",\n  \"payeeIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PERSON\"\n  },\n  \"payee\": {\n    \"name\": \"<string>\",\n    \"accountNumber\": \"<string>\",\n    \"sortCode\": \"<string>\",\n    \"iban\": \"<string>\",\n    \"payeeType\": \"IBAN\",\n    \"addressLine1\": \"<string>\",\n    \"addressLine2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"county\": \"<string>\",\n    \"postCode\": \"<string>\",\n    \"country\": \"OM\"\n  },\n  \"transactionMonitoring\": {\n    \"transactionMonitoringMetadata\": \"<string>\",\n    \"transactionMonitoringProvider\": \"CLEARBANK\"\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "DELETE",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/payments/:paymentId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"payments",
														":paymentId"
													],
													"variable": [
														{
															"key": "paymentId",
															"value": "{{paymentId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						}
					]
				},
				{
					"name": "mandates",
					"item": [
						{
							"name": "transfer",
							"item": [
								{
									"name": "Request transfer of a Direct Debit mandate associated with the wallet.",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates/transfer",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates",
												"transfer"
											]
										},
										"description": "Only required if transferring paper mandate as part of the Current Account Switching Service. Supply either sort code and account number for UK payee type, or IBAN for IBAN payee type."
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														"transfer"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"accepted\": \"<boolean>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														"transfer"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														"transfer"
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														"transfer"
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														"transfer"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"accountId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"payeeType\": \"IBAN\",\n  \"mandateType\": \"PaperMandate\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\",\n  \"effectiveDateUtc\": \"<date>\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/transfer",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														"transfer"
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "{mandateId}",
							"item": [
								{
									"name": "cancel",
									"item": [
										{
											"name": "Requests cancellation for a Direct Debit mandate",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"reasonCode\": \"1\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId",
														"cancel"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"1\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/cancel",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"cancel"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "return",
									"item": [
										{
											"name": "Requests return of a Direct Debit mandate",
											"event": [
												{
													"listen": "test",
													"script": {
														"exec": [
															"const response = pm.response;",
															"",
															"pm.test(\"Status code is 200\", function () {",
															"    pm.expect(response).to.have.status(200);",
															"});",
															"",
															"pm.test(\"Sub 2s response\", function () {",
															"    pm.expect(response.responseTime).to.be.below(2000);",
															"});"
														],
														"type": "text/javascript"
													}
												}
											],
											"request": {
												"method": "POST",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>",
														"disabled": true
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>",
														"disabled": true
													},
													{
														"key": "Content-Type",
														"value": "application/json"
													},
													{
														"key": "Accept",
														"value": "application/json"
													}
												],
												"body": {
													"mode": "raw",
													"raw": "{\n  \"reasonCode\": \"H\"\n}",
													"options": {
														"raw": {
															"headerFamily": "json",
															"language": "json"
														}
													}
												},
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId",
														"return"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"response": [
												{
													"name": "Success",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "OK",
													"code": 200,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
												},
												{
													"name": "Bad Request",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Bad Request",
													"code": 400,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
												},
												{
													"name": "Forbidden",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Forbidden",
													"code": 403,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Not Found",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Not Found",
													"code": 404,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"message\": \"<string>\"\n}"
												},
												{
													"name": "Conflict",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"key": "Accept",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Conflict",
													"code": 409,
													"_postman_previewlanguage": "json",
													"header": [
														{
															"key": "Content-Type",
															"value": "application/json"
														},
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
												},
												{
													"name": "Server Error",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Internal Server Error",
													"code": 500,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												},
												{
													"name": "Service Unavailable",
													"originalRequest": {
														"method": "POST",
														"header": [
															{
																"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
																"key": "X-Correlation-Id",
																"value": "<string>"
															},
															{
																"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
																"key": "X-Digital-Signature",
																"value": "<string>"
															},
															{
																"key": "Content-Type",
																"value": "application/json"
															},
															{
																"description": "Added as a part of security scheme: apikey",
																"key": "X-App-Medium",
																"value": "<API Key>"
															}
														],
														"body": {
															"mode": "raw",
															"raw": "{\n  \"reasonCode\": \"H\"\n}",
															"options": {
																"raw": {
																	"headerFamily": "json",
																	"language": "json"
																}
															}
														},
														"url": {
															"raw": "{{coreApiBaseUrl}}/mandates/:mandateId/return",
															"host": [
																"{{coreApiBaseUrl}}"
															],
															"path": [
																"mandates",
																":mandateId",
																"return"
															],
															"variable": [
																{
																	"key": "mandateId",
																	"value": "{{mandateId}}"
																}
															]
														}
													},
													"status": "Service Unavailable",
													"code": 503,
													"_postman_previewlanguage": "text",
													"header": [
														{
															"key": "X-Correlation-Id",
															"value": "",
															"description": ""
														}
													],
													"cookie": [],
													"body": ""
												}
											]
										}
									]
								},
								{
									"name": "Gets a single Direct Debit mandate by id",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates",
												":mandateId"
											],
											"variable": [
												{
													"key": "mandateId",
													"value": "{{mandateId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"mandateId\": \"<uuid>\",\n  \"walletId\": \"<uuid>\",\n  \"payerName\": \"<string>\",\n  \"reference\": \"<string>\",\n  \"serviceUserNumber\": \"<string>\",\n  \"originatorName\": \"<string>\",\n  \"lastRequestedPayment\": {\n    \"amount\": {\n      \"currency\": \"<string>\",\n      \"amount\": \"63139656\"\n    },\n    \"dateUtc\": \"<dateTime>\"\n  },\n  \"state\": \"CANCELLED\",\n  \"mandateType\": \"ORIGINATION\",\n  \"createdAtUtc\": \"<dateTime>\"\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Conflict",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "Conflict",
											"code": 409,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
														"key": "X-Digital-Signature",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/mandates/:mandateId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"mandates",
														":mandateId"
													],
													"variable": [
														{
															"key": "mandateId",
															"value": "{{mandateId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Request creation of a Direct Debit mandate associated with the wallet.",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/mandates",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"mandates"
									]
								},
								"description": "Only required if you have received a validated Paper DDI and need to inform your PSP of its existence. All other DDIs are set up through AUDDIS. Supply either sort code and account number for UK payee type, or IBAN for IBAN payee type."
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"accepted\": \"<boolean>\"\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates"
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"errors\": {\n    \"qui_bf\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"Duis_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"eud\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"walletId\": \"{{walletId}}\",\n  \"serviceUserNumber\": \"<string>\",\n  \"reference\": \"Test mandate reference\",\n  \"payeeType\": \"UK\",\n  \"mandateType\": \"Origination\",\n  \"originatorName\": \"<string>\",\n  \"payerName\": \"<string>\",\n  \"accountNumber\": \"<string>\",\n  \"sortCode\": \"<string>\",\n  \"iban\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/mandates",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"mandates"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "fees",
					"item": [
						{
							"name": "{feeId}",
							"item": [
								{
									"name": "Gets a specific fee by id (Service account level only)",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>",
												"disabled": true
											},
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees/:feeId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees",
												":feeId"
											],
											"variable": [
												{
													"key": "feeId",
													"value": "{{feeId}}"
												}
											]
										}
									},
									"response": [
										{
											"name": "Success",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/fees/:feeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"fees",
														":feeId"
													],
													"variable": [
														{
															"key": "feeId",
															"value": "{{feeId}}"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"id\": \"<string>\",\n  \"accountId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"51357518\"\n  },\n  \"description\": \" \",\n  \"subTransactionType\": \"j 9jL\",\n  \"queueOnFailure\": \"<boolean>\",\n  \"status\": \"PAID\",\n  \"paymentOrderId\": \"<uuid>\",\n  \"createdAt\": \"<integer>\",\n  \"updatedAt\": \"<integer>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/fees/:feeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"fees",
														":feeId"
													],
													"variable": [
														{
															"key": "feeId",
															"value": "{{feeId}}"
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/fees/:feeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"fees",
														":feeId"
													],
													"variable": [
														{
															"key": "feeId",
															"value": "{{feeId}}"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
														"key": "X-Correlation-Id",
														"value": "<string>"
													},
													{
														"description": "Added as a part of security scheme: apikey",
														"key": "X-App-Medium",
														"value": "<API Key>"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/fees/:feeId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"fees",
														":feeId"
													],
													"variable": [
														{
															"key": "feeId",
															"value": "{{feeId}}"
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "X-Correlation-Id",
													"value": "",
													"description": ""
												}
											],
											"cookie": [],
											"body": ""
										}
									]
								}
							]
						},
						{
							"name": "Gets all pending fees associated with your institution grouped by account (Service account level only)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/fees?accountId={{accountId}}",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"fees"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
											"disabled": true
										},
										{
											"key": "accountId",
											"value": "{{accountId}}",
											"description": "A filter for accountId"
										},
										{
											"key": "status",
											"value": "FAILED",
											"description": "A filter for fee status",
											"disabled": true
										}
									]
								},
								"description": "All pending fees are returned grouped by account"
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees?accountId={{accountId}}",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "accountId",
													"value": "{{accountId}}",
													"description": "A filter for accountId"
												},
												{
													"key": "status",
													"value": "FAILED",
													"description": "A filter for fee status",
													"disabled": true
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  },\n  \"results\": [\n    {\n      \"id\": \"<string>\",\n      \"accountId\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"95541756858\"\n      },\n      \"description\": \"4\",\n      \"subTransactionType\": \"B\\t\\ncb \",\n      \"queueOnFailure\": \"<boolean>\",\n      \"status\": \"PENDING\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"createdAt\": \"<integer>\",\n      \"updatedAt\": \"<integer>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"accountId\": \"<uuid>\",\n      \"amount\": {\n        \"currency\": \"<string>\",\n        \"amount\": \"2\"\n      },\n      \"description\": \"  RT p \",\n      \"subTransactionType\": \"aVvf86Cx \",\n      \"queueOnFailure\": \"<boolean>\",\n      \"status\": \"PENDING\",\n      \"paymentOrderId\": \"<uuid>\",\n      \"createdAt\": \"<integer>\",\n      \"updatedAt\": \"<integer>\"\n    }\n  ]\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees?accountId={{accountId}}",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "accountId",
													"value": "{{accountId}}",
													"description": "A filter for accountId"
												},
												{
													"key": "status",
													"value": "FAILED",
													"description": "A filter for fee status",
													"disabled": true
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees?accountId={{accountId}}",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "accountId",
													"value": "{{accountId}}",
													"description": "A filter for accountId"
												},
												{
													"key": "status",
													"value": "FAILED",
													"description": "A filter for fee status",
													"disabled": true
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees?accountId={{accountId}}",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:10",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 10",
													"disabled": true
												},
												{
													"key": "accountId",
													"value": "{{accountId}}",
													"description": "A filter for accountId"
												},
												{
													"key": "status",
													"value": "FAILED",
													"description": "A filter for fee status",
													"disabled": true
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "Post a manual fee to a customer's account (Service account level only)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"    const responseBody = response.json();",
											"    pm.environment.set(\"feeId\", responseBody.id);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"100\"\n  },\n  \"description\": \"This is a description for a test fee\",\n  \"subTransactionType\": \"\",\n  \"queueOnFailure\": false\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/fees",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"fees"
									]
								},
								"description": "Accepts an array of fees to be posted to accounts, a maximum of 10k fees can be sent in a single post."
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"100\"\n  },\n  \"description\": \"This is a description for a test fee\",\n  \"subTransactionType\": \"\",\n  \"queueOnFailure\": false\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"id\": \"<string>\",\n  \"accountId\": \"<uuid>\",\n  \"amount\": {\n    \"currency\": \"<string>\",\n    \"amount\": \"51357518\"\n  },\n  \"description\": \" \",\n  \"subTransactionType\": \"j 9jL\",\n  \"queueOnFailure\": \"<boolean>\",\n  \"status\": \"PAID\",\n  \"paymentOrderId\": \"<uuid>\",\n  \"createdAt\": \"<integer>\",\n  \"updatedAt\": \"<integer>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"100\"\n  },\n  \"description\": \"This is a description for a test fee\",\n  \"subTransactionType\": \"\",\n  \"queueOnFailure\": false\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"100\"\n  },\n  \"description\": \"This is a description for a test fee\",\n  \"subTransactionType\": \"\",\n  \"queueOnFailure\": false\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"accountId\": \"{{accountId}}\",\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"amount\": \"100\"\n  },\n  \"description\": \"This is a description for a test fee\",\n  \"subTransactionType\": \"\",\n  \"queueOnFailure\": false\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{coreApiBaseUrl}}/fees",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"fees"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "test",
					"item": [
						{
							"name": "A test endpoint which ensures that authentication is working as expected",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/test",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"test"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						},
						{
							"name": "A test endpoint which echoes the supplied content to ensure that signature verification and authorization is working as expected",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
										"key": "X-Correlation-Id",
										"value": "<string>",
										"disabled": true
									},
									{
										"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
										"key": "X-Digital-Signature",
										"value": "<string>",
										"disabled": true
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/test",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"test"
									]
								}
							},
							"response": [
								{
									"name": "Success",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Conflict",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Conflict",
									"code": 409,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": "{\n  \"description\": \"Server Error\",\n  \"headers\": {\n    \"X-Correlation-Id\": {}\n  }\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"description": "(Required) A unique UUID v4 token generated by you to allow tracking of the request",
												"key": "X-Correlation-Id",
												"value": "<string>"
											},
											{
												"description": "(Required) Signed hash of the body of the request. The hash is signed by your private key",
												"key": "X-Digital-Signature",
												"value": "<string>"
											},
											{
												"description": "Added as a part of security scheme: apikey",
												"key": "X-App-Medium",
												"value": "<API Key>"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/test",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"test"
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "X-Correlation-Id",
											"value": "",
											"description": ""
										}
									],
									"cookie": [],
									"body": ""
								}
							]
						}
					]
				},
				{
					"name": "regions",
					"item": [
						{
							"name": "{regionId}",
							"item": [
								{
									"name": "Get region",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/regions/:regionId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"regions",
												":regionId"
											],
											"variable": [
												{
													"key": "regionId",
													"value": "<uuid>"
												}
											]
										}
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"availableCurrencies\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdAtUtc\": \"<string>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"ACCOUNT\"\n  },\n  \"defaultCulture\": \"<string>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"timezone\": \"<string>\",\n  \"updatedAtUtc\": \"<string>\",\n  \"updatedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n  },\n  \"workingDays\": {\n    \"FRIDAY\": \"<boolean>\",\n    \"MONDAY\": \"<boolean>\",\n    \"SATURDAY\": \"<boolean>\",\n    \"SUNDAY\": \"<boolean>\",\n    \"THURSDAY\": \"<boolean>\",\n    \"TUESDAY\": \"<boolean>\",\n    \"WEDNESDAY\": \"<boolean>\"\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"title\": \"<string>\",\n  \"errors\": {\n    \"quidb\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aliqua50f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/regions/:regionId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"regions",
														":regionId"
													],
													"variable": [
														{
															"key": "regionId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": null,
											"cookie": [],
											"body": null
										}
									]
								}
							]
						},
						{
							"name": "Gets all regions",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/regions",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"regions"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
											"disabled": true
										}
									]
								}
							},
							"response": [
								{
									"name": "Successful response",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"results\": [\n    {\n      \"availableCurrencies\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"createdAtUtc\": \"<string>\",\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"GENERAL_LEDGER_ACCOUNT\"\n      },\n      \"defaultCulture\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"timezone\": \"<string>\",\n      \"updatedAtUtc\": \"<string>\",\n      \"updatedByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"INSTITUTIONAL_USER\"\n      },\n      \"workingDays\": {\n        \"FRIDAY\": \"<boolean>\",\n        \"MONDAY\": \"<boolean>\",\n        \"SATURDAY\": \"<boolean>\",\n        \"SUNDAY\": \"<boolean>\",\n        \"THURSDAY\": \"<boolean>\",\n        \"TUESDAY\": \"<boolean>\",\n        \"WEDNESDAY\": \"<boolean>\"\n      }\n    },\n    {\n      \"availableCurrencies\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"createdAtUtc\": \"<string>\",\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SERVICE_ACCOUNT\"\n      },\n      \"defaultCulture\": \"<string>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"timezone\": \"<string>\",\n      \"updatedAtUtc\": \"<string>\",\n      \"updatedByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"RATE\"\n      },\n      \"workingDays\": {\n        \"FRIDAY\": \"<boolean>\",\n        \"MONDAY\": \"<boolean>\",\n        \"SATURDAY\": \"<boolean>\",\n        \"SUNDAY\": \"<boolean>\",\n        \"THURSDAY\": \"<boolean>\",\n        \"TUESDAY\": \"<boolean>\",\n        \"WEDNESDAY\": \"<boolean>\"\n      }\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"title\": \"<string>\",\n  \"errors\": {\n    \"quidb\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aliqua50f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/regions",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"regions"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": null,
									"cookie": [],
									"body": null
								}
							]
						}
					]
				},
				{
					"name": "holidays",
					"item": [
						{
							"name": "{holidayId}",
							"item": [
								{
									"name": "Get holiday",
									"event": [
										{
											"listen": "test",
											"script": {
												"exec": [
													"const response = pm.response;",
													"",
													"pm.test(\"Status code is 200\", function () {",
													"    pm.expect(response).to.have.status(200);",
													"});",
													"",
													"pm.test(\"Sub 2s response\", function () {",
													"    pm.expect(response.responseTime).to.be.below(2000);",
													"});"
												],
												"type": "text/javascript"
											}
										}
									],
									"request": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/holidays/:holidayId",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"holidays",
												":holidayId"
											],
											"variable": [
												{
													"key": "holidayId",
													"value": "<uuid>"
												}
											]
										}
									},
									"response": [
										{
											"name": "Successful response",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"createdAtUtc\": \"<string>\",\n  \"createdByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"PRODUCT_ISSUE\"\n  },\n  \"holidayDate\": \"<dateTime>\",\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"updatedAtUtc\": \"<string>\",\n  \"updatedByIdentifier\": {\n    \"entityId\": \"<string>\",\n    \"entityName\": \"<string>\",\n    \"entityType\": \"INSTITUTIONAL_ACCOUNT\"\n  }\n}"
										},
										{
											"name": "Bad Request",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"title\": \"<string>\",\n  \"errors\": {\n    \"quidb\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aliqua50f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
										},
										{
											"name": "Unauthorized",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Forbidden",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "Forbidden",
											"code": 403,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Not Found",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Server Error",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"message\": \"<string>\"\n}"
										},
										{
											"name": "Service Unavailable",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "X-App-Medium",
														"value": "<API Key>",
														"description": "Added as a part of security scheme: apikey"
													}
												],
												"url": {
													"raw": "{{coreApiBaseUrl}}/internal/holidays/:holidayId",
													"host": [
														"{{coreApiBaseUrl}}"
													],
													"path": [
														"internal",
														"holidays",
														":holidayId"
													],
													"variable": [
														{
															"key": "holidayId",
															"value": ""
														}
													]
												}
											},
											"status": "Service Unavailable",
											"code": 503,
											"_postman_previewlanguage": "text",
											"header": null,
											"cookie": [],
											"body": null
										}
									]
								}
							]
						},
						{
							"name": "Gets all holidays",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"const response = pm.response;",
											"",
											"pm.test(\"Status code is 200\", function () {",
											"    pm.expect(response).to.have.status(200);",
											"});",
											"",
											"pm.test(\"Sub 2s response\", function () {",
											"    pm.expect(response.responseTime).to.be.below(2000);",
											"});"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{coreApiBaseUrl}}/holidays?regionId=<string>",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"holidays"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "<integer>",
											"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
											"disabled": true
										},
										{
											"key": "pageSize",
											"value": "<integer>",
											"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
											"disabled": true
										},
										{
											"key": "regionId",
											"value": "<string>",
											"description": "Filter holidays by the region they are associated with"
										}
									]
								}
							},
							"response": [
								{
									"name": "Successful response",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"results\": [\n    {\n      \"createdAtUtc\": \"<string>\",\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      },\n      \"holidayDate\": \"<dateTime>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"updatedAtUtc\": \"<string>\",\n      \"updatedByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"MIGRATION\"\n      }\n    },\n    {\n      \"createdAtUtc\": \"<string>\",\n      \"createdByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"SUB_TRANSACTION_TYPE\"\n      },\n      \"holidayDate\": \"<dateTime>\",\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"updatedAtUtc\": \"<string>\",\n      \"updatedByIdentifier\": {\n        \"entityId\": \"<string>\",\n        \"entityName\": \"<string>\",\n        \"entityType\": \"GENERAL_LEDGER_ACCOUNT\"\n      }\n    }\n  ],\n  \"records\": {\n    \"totalRecords\": \"<integer>\",\n    \"pageNumber\": \"<integer>\",\n    \"pageSize\": \"<integer>\"\n  }\n}"
								},
								{
									"name": "Bad Request",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"title\": \"<string>\",\n  \"errors\": {\n    \"quidb\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aliqua50f\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"type\": \"<string>\",\n  \"status\": \"<integer>\",\n  \"detail\": \"<string>\",\n  \"instance\": \"<string>\"\n}"
								},
								{
									"name": "Unauthorized",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Forbidden",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "Forbidden",
									"code": 403,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Not Found",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Server Error",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"message\": \"<string>\"\n}"
								},
								{
									"name": "Service Unavailable",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "X-App-Medium",
												"value": "<API Key>",
												"description": "Added as a part of security scheme: apikey"
											}
										],
										"url": {
											"raw": "{{coreApiBaseUrl}}/internal/holidays?regionId=<string>",
											"host": [
												"{{coreApiBaseUrl}}"
											],
											"path": [
												"internal",
												"holidays"
											],
											"query": [
												{
													"key": "pageNumber",
													"value": "<integer>",
													"description": "The page number to control returned results into manageable sets. Default if not supplied:1",
													"disabled": true
												},
												{
													"key": "pageSize",
													"value": "<integer>",
													"description": "The page size to control returned results into manageable sets. Default if not supplied: 100",
													"disabled": true
												},
												{
													"key": "regionId",
													"value": "<string>",
													"description": "Filter holidays by the region they are associated with"
												}
											]
										}
									},
									"status": "Service Unavailable",
									"code": 503,
									"_postman_previewlanguage": "text",
									"header": null,
									"cookie": [],
									"body": null
								}
							]
						}
					]
				},
				{
					"name": "projections",
					"item": [
						{
							"name": "Migrate client projections",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"name": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/projections/management/migrate",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"projections",
										"management",
										"migrate"
									]
								}
							},
							"response": []
						},
						{
							"name": "Refresh client projections",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"name": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{coreApiBaseUrl}}/projections/management/refresh",
									"host": [
										"{{coreApiBaseUrl}}"
									],
									"path": [
										"projections",
										"management",
										"refresh"
									]
								}
							},
							"response": []
						}
					]
				}
			],
			"description": "All folders within are endpoints on the SaaScada Core API, where the order of the folders follows the logical flow of using the API",
			"auth": {
				"type": "bearer",
				"bearer": [
					{
						"key": "token",
						"value": "{{accessToken}}",
						"type": "string"
					}
				]
			},
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							"pm.request.headers.add({ key: \"X-App-Medium\", value: \"{{appMedium}}\" });",
							"pm.request.headers.add({ key: \"X-Correlation-Id\", value: \"{{$guid}}\" });",
							"",
							"pm.environment.set(\"RandomNumber\", _.random(1, 99));",
							"pm.environment.set(\"RandomDay\", _.random(1, 28));",
							"pm.environment.set(\"RandomMonth\", _.random(1, 12));",
							"pm.environment.set('RandomUUID', pm.variables.replaceIn('{{$randomUUID}}'));",
							"pm.environment.set('RandomFirstName', pm.variables.replaceIn('{{$randomFirstName}}'));",
							"pm.environment.set('RandomLastName', pm.variables.replaceIn('{{$randomLastName}}'));",
							"pm.environment.set('RandomFullName', pm.variables.replaceIn('{{$randomFullName}}'));",
							"pm.environment.set('RandomEmail', pm.variables.replaceIn('{{$randomExampleEmail}}'));",
							"pm.environment.set('RandomWord', pm.variables.replaceIn('{{$randomWord}}'));",
							"pm.environment.set('RandomIban', pm.variables.replaceIn('{{$randomBankAccountIban}}'));",
							"pm.environment.set('RandomISIN', pm.variables.replaceIn('{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}'));",
							"",
							"// Gets clients private RSA key for DigitalSignature creation",
							"var key = pm.environment.get('digitalSignatureKey');",
							"if (typeof key === 'undefined') {",
							"    return;",
							"}",
							"",
							"if (!pm.globals.has('forgeJS') || pm.globals.get('forgeJS') === '') {",
							"    pm.sendRequest(\"https://saescada.s3.eu-west-2.amazonaws.com/assets/forge.min.js\", function (err, res) {",
							"        console.log('send request');",
							"        if (err) {",
							"            console.log(err);",
							"        } else {",
							"            pm.globals.set(\"forgeJS\", res.text());",
							"            signature();",
							"        }",
							"    }",
							"    )",
							"} else {",
							"    signature();",
							"}",
							"",
							"if (!pm.globals.has('schemaValidator') || pm.globals.get('schemaValidator') === '') {",
							"    pm.globals.set('schemaValidator', function schemaValidator(schemaFile) {",
							"        const Ajv = require('ajv');",
							"        const ajv = new Ajv({ logger: console, allErrors: true });",
							"",
							"        // build base schema URL",
							"        const platformSchemaURL = pm.variables.get('platformSchemaURL');",
							"        const platformEnvironment = pm.environment.get('platformEnvironment').toLowerCase();",
							"        const baseSchemaUrl = platformSchemaURL + '/' + platformEnvironment + '/';",
							"        const schemalUrl = baseSchemaUrl + schemaFile + '.json';",
							"",
							"        console.log(schemalUrl);",
							"        const postRequest = {",
							"            url: schemalUrl,",
							"            method: 'GET'",
							"        };",
							"",
							"        // send request to our sig gen, and store response in var",
							"        pm.sendRequest(postRequest, (err, res) => {",
							"            let schema;",
							"            try {",
							"                schema = JSON.parse(res.text());",
							"            } catch (e) {",
							"                console.log(e);",
							"            }",
							"",
							"            pm.test('Schema is valid', () => {",
							"                const isValid = ajv.validate(schema, pm.response.json());",
							"                if (!isValid) {",
							"                    console.log(ajv.errors);",
							"                }",
							"                pm.expect(isValid).to.be.true;",
							"            });",
							"        });",
							"    } + '');",
							"}",
							"",
							"function signature() {",
							"    console.log('run sig');",
							"    const uuid = require('uuid');",
							"    eval(postman.getGlobalVariable(\"forgeJS\"));",
							"    console.log('ran eval');",
							"    const privateKey = forge.pki.privateKeyFromPem(key);",
							"    console.log('got private key');",
							"    const md = forge.md.sha256.create();",
							"",
							"    // VAR Naming Convention!",
							"    // {environment}_{optional-method}_{varname}",
							"",
							"    // Dynamic UUID's naming convention:",
							"    // {name}_uuid",
							"    // E.g.: account1_uuid, my_account_number_uuid, payment_uuid etc",
							"",
							"    // Dynamic strings naming convention:",
							"    // {name}_str",
							"    // E.g.: first_name_str, last_str, account_str etc",
							"",
							"    // Dynamic bible naming convention:",
							"    // {name}_bible",
							"    // E.g.: terry_davis_bible, cia_spooks_bible etc",
							"",
							"    let data = request.data;",
							"    console.log('the data', data);",
							"    // replace any variables with their actual counterparts",
							"    if (typeof data === 'string' && data.length) {",
							"        data = data.replace(/{{(\\w*)}}/g, function (str, key) {",
							"",
							"            // Replace variables with there value",
							"            if (pm.variables.has(key)) {",
							"                console.log(\"replace-variable:\", key, pm.variables.get(key));",
							"                return pm.variables.get(key);",
							"            }",
							"",
							"            // below we create global uuid vars on the fly if they don't exist",
							"            else if (key.endsWith('_uuid')) {",
							"                console.log('Found ' + key + ' ending with _uuid');",
							"                pm.globals.set(key, uuid.v4());",
							"                console.log('Setting global ' + key + ' to ' + pm.globals.get(key));",
							"                return pm.globals.get(key);",
							"            } else if (key.endsWith('_str')) {",
							"                var text = \"\";",
							"                var possible = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 \";",
							"",
							"                for (var i = 0; i < 20; i++) {",
							"                    text += possible.charAt(Math.floor(Math.random() * possible.length));",
							"                }",
							"",
							"                pm.globals.set(key, text);",
							"                console.log('Setting global ' + key + ' to ' + pm.globals.get(key));",
							"                return pm.globals.get(key);",
							"            }",
							"        });",
							"    }",
							"",
							"    console.log('calculate signature for this payload', data);",
							"    md.update(data);",
							"    const signature = privateKey.sign(md);",
							"    const signatureString = forge.util.encode64(signature);",
							"    console.log('setting signature header', signatureString);",
							"    pm.globals.set(\"digitalSignature\", signatureString);",
							"    pm.request.headers.add({ key: \"X-Digital-Signature\", value: pm.globals.get(\"digitalSignature\") });",
							"}"
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	]
}