{
	"info": {
		"_postman_id": "4783e1d9-feb6-4297-8e9e-96af28722da7",
		"name": "Dintero Checkout",
		"description": "## Interact with the Dintero API.\n\nBefore starting, log in to https://backoffice.dintero.com, go to Settings -> API clients and create a new API client. Choose the following:\n\n* Name: Checkout Client\n* Environment/Audience: Test\n* Description: Dintero Checkout Client\n\nNote down the client id and secret. Save this to the Postman environment variables for the Sandbox environment, along with your Dintero account id.\n\nTo perform calls to the API, first generate an access token with the Get Token-request. The access token will be saved as an environment variable, and you can continue creating a session.",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "Get Token",
			"event": [
				{
					"listen": "test",
					"script": {
						"exec": [
							"const accessToken = pm.response.json().access_token;",
							"pm.environment.set(\"accessToken\", accessToken);",
							""
						],
						"type": "text/javascript"
					}
				}
			],
			"request": {
				"auth": {
					"type": "basic",
					"basic": [
						{
							"key": "password",
							"value": "{{checkoutApiClientSecret}}",
							"type": "string"
						},
						{
							"key": "username",
							"value": "{{checkoutApiClientId}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"grant_type\": \"client_credentials\",\n    \"audience\": \"https://api.dintero.com/v1/accounts/{{dinteroAccountId}}\" \n}"
				},
				"url": {
					"raw": "{{baseUrl}}/accounts/{{dinteroAccountId}}/auth/token",
					"host": [
						"{{baseUrl}}"
					],
					"path": [
						"accounts",
						"{{dinteroAccountId}}",
						"auth",
						"token"
					]
				},
				"description": "Use this endpoint to directly request an access_token\n\n### Client Access Token\nUse HTTP Basic authentication scheme for\nauthenticating grant_type `client_credentials`, use\nclient_id/client_secret as user/password.\n\n### Code/Password Token\nUse HTTP Bearer authentication scheme for authenticating\ngrant_type `authorization_code` or `password`, where the\nBearer value must be a JWT toke with access to the token\nendpoint.\n\n### Account User Token\nUse HTTP Bearer authentication scheme for authenticating\ngrant_type `account_user_token`, where the Bearer value\nmust be a account user JWT token.\n\n> Use ID token as Bearer toke if the user was authenticated\n> externally. The ID must include a `email` claim that\n> identifies the account user.\n\n### Refresh Token\nUse HTTP Bearer authentication scheme for authenticating\ngrant_type `refresh_token` where the Bearer value **must**\nbe an Access Token for the clients that was used to create\nthe Refresh Token.\n\n### Multi-factor authentication (MFA)\n\nWhen a request is made to the endpoint to get an access token,\nnormally you either get an error, or you get an access token.\nHowever, when the MFA is enabled, the endpoint may return a new\nerror with `error.code: mfa_required`.\n\nWhen an `mfa_required` error is returned, the client must perform\na `challenge`. This is done by sending a request to the\n[auth/mfa/challenge](#operation/aid_auth_mfa_challenge_post) endpoint\n\nTo verify MFA using an OOB challenge, the client must make a request to\nthis endpoint with `grant_type=mfa-oob`. Include the `oob_code` you\nreceived from the challenge response, as well as the `mfa_token` you\nreceived as part of mfa_required error.\n\nscopes:\n- admin:accounts\n- write:accounts\n- write:accounts:/auth/users\n- write:accounts:/auth/users/no-mfa\n"
			},
			"response": [
				{
					"name": "Success",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/accounts/:oid/auth/token",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"accounts",
								":oid",
								"auth",
								"token"
							],
							"variable": [
								{
									"key": "oid"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"access_token\": \"eyJhbGci...t7P4\",\n \"token_type\": \"Bearer\",\n \"expires_in\": 86400,\n \"refresh_token\": \"Du\"\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/accounts/:oid/auth/token",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"accounts",
								":oid",
								"auth",
								"token"
							],
							"variable": [
								{
									"key": "oid"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"cupidatat\",\n  \"code\": \"ad et Ut Lorem\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/accounts/:oid/auth/token",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"accounts",
								":oid",
								"auth",
								"token"
							],
							"variable": [
								{
									"key": "oid"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"cupidatat\",\n  \"code\": \"ad et Ut Lorem\"\n }\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/accounts/:oid/auth/token",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"accounts",
								":oid",
								"auth",
								"token"
							],
							"variable": [
								{
									"key": "oid"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"cupidatat\",\n  \"code\": \"ad et Ut Lorem\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/accounts/:oid/auth/token",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"accounts",
								":oid",
								"auth",
								"token"
							],
							"variable": [
								{
									"key": "oid"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"eu sit ullamco\",\n  \"code\": \"fugiat dolore\"\n },\n \"mfa_token\": \"non officia cupidatat minim ut\"\n}"
				}
			]
		},
		{
			"name": "Create a checkout session",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"exec": [
							""
						],
						"type": "text/javascript"
					}
				},
				{
					"listen": "test",
					"script": {
						"exec": [
							"const sessionId = pm.response.json().id;",
							"pm.environment.set(\"sessionId\", sessionId);"
						],
						"type": "text/javascript"
					}
				}
			],
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"configuration\": {\n        \"default_payment_type\": \"payex.creditcard\",\n        \"payex\": {\n            \"creditcard\": {\n                \"enabled\": true\n            }\n        },\n        \"vipps\": {\n            \"enabled\": true\n        },\n        \"collector\": {\n            \"type\": \"payment_type\",\n            \"invoice\": {\n                \"enabled\": true,\n                \"type\": \"payment_product_type\"\n            }\n        }\n    },\n    \"order\": {\n        \"merchant_reference\": \"{{$randomLoremSlug}}\",\n        \"amount\": 29990,\n        \"currency\": \"NOK\",\n        \"vat_amount\": 6000,\n        \"items\": [{\n            \"id\": \"item_01\",\n            \"line_id\": \"1\",\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"amount\": 29990,\n            \"vat_amount\": 6000,\n            \"vat\": 25\n        }]\n    },\n    \"url\": {\n        \"return_url\": \"https://checkout.dintero.com/result/\"\n    }\n}"
				},
				"url": {
					"raw": "{{checkoutUrl}}/sessions",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"sessions"
					]
				},
				"description": "Create a corresponding Checkout Session for an order placed in your system\n\n#### Session with Instabank\n\nNote that `items` is a required property when creating a session with\nInstabank configured.\n\nscopes:\n- admin:checkout\n- write:checkout\n"
			},
			"response": [
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"Lorem \",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"ut culpa proident\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"Lorem \",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"ut culpa proident\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"Lorem \",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"ut culpa proident\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "checkout session created",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"Lorem \",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"ut culpa proident\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"id\": \"Excepteur amet nisi exercitation\",\n \"url\": \"https://checkout.api.dintero.com/v1/view/9ea1610a357dc8189081c4cb955f26f612d91367\",\n \"publish\": [\n  {\n   \"type\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   },\n   \"channel\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  },\n  {\n   \"type\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   },\n   \"channel\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  }\n ],\n \"session\": {\n  \"configuration\": {\n   \"auto_capture\": \"<boolean>\",\n   \"channel\": \"<string>\",\n   \"publish\": [\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"default_payment_type\": \"<string>\",\n   \"instabank\": {\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"postponement\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"netaxept\": {\n    \"type\": \"<string>\",\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"terminal\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"payex\": {\n    \"dynamic_descriptor\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"generate_payment_token\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"no_cvc\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"vipps\": {\n    \"enabled\": \"<boolean>\",\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"dynamic_descriptor\": \"<string>\"\n   },\n   \"collector\": {\n    \"type\": \"id\",\n    \"dynamic_descriptor\": \"<string>\",\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b_preapproved\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"santander\": {\n    \"type\": \"consectetur et\",\n    \"debit_account\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"branding_name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"swish\": {\n    \"type\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"discounts\": {\n    \"express_discount_code\": {\n     \"enabled\": \"<boolean>\"\n    },\n    \"order\": {\n     \"enabled\": false\n    }\n   },\n   \"theme\": {\n    \"backdrop\": \"<string>\",\n    \"primary\": \"<string>\",\n    \"text\": \"<string>\",\n    \"warning\": \"<string>\",\n    \"error\": \"<string>\",\n    \"font-family\": \"<string>\"\n   },\n   \"merchant\": {\n    \"id\": \"<string>\",\n    \"logo_url\": \"<uri>\",\n    \"name\": \"TKP tech AS\"\n   }\n  },\n  \"order\": {\n   \"merchant_reference\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  },\n  \"url\": {\n   \"return_url\": \"https://example.com/accept\",\n   \"callback_url\": \"https://example.com/callback?method=GET\",\n   \"merchant_terms_url\": \"https://example.com/terms.html\"\n  },\n  \"id\": \"<string>\",\n  \"created_at\": \"<dateTime>\",\n  \"customer\": {\n   \"customer_id\": \"<string>\",\n   \"email\": \"john.doe@example.com\",\n   \"phone_number\": \"+4799999999\",\n   \"tokens\": {\n    \"payex.creditcard\": {}\n   }\n  },\n  \"expires_at\": \"<dateTime>\",\n  \"express\": {\n   \"shipping_options\": [\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    }\n   ],\n   \"discount_codes\": {\n    \"max_count\": \"<number>\",\n    \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n   },\n   \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n   \"customer_types\": [\n    \"b2c\",\n    \"b2b\"\n   ]\n  },\n  \"updated_at\": \"<dateTime>\",\n  \"customer_ip\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"events\": [\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n     \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   },\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n     \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   }\n  ],\n  \"transaction_id\": \"<string>\",\n  \"cancelled_by\": \"amet incidi\",\n  \"cancelled_at\": \"1969-09-12T01:37:17.626Z\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"Lorem \",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"ut culpa proident\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "List checkout sessions",
			"request": {
				"auth": {
					"type": "apikey",
					"apikey": [
						{
							"key": "key",
							"value": "Authorization",
							"type": "string"
						},
						{
							"key": "value",
							"value": true,
							"type": "boolean"
						},
						{
							"key": "in",
							"value": "header",
							"type": "string"
						}
					]
				},
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{baseUrl}}/sessions?limit=10&starting_after=<checkout-id>&id=<checkout-id>&id=<checkout-id>",
					"host": [
						"{{baseUrl}}"
					],
					"path": [
						"sessions"
					],
					"query": [
						{
							"key": "limit",
							"value": "10",
							"description": "A limit on the number of objects to be returned. Limit can range\nbetween 1 and 100 items, and the default is 10 items.\n"
						},
						{
							"key": "starting_after",
							"value": "<checkout-id>",
							"description": "cursor for use in pagination. starting_after is an object ID\nthat defines your place in the list. For instance, if you make\na list request and receive 100 objects, ending with `obj_foo`,\nyour subsequent call can include `starting_after=obj_foo`\nin order to fetch the next page of the list.\n"
						},
						{
							"key": "id",
							"value": "<checkout-id>",
							"description": "List of ids that should be included in the result. ?id=A&id=B&id=X\n"
						},
						{
							"key": "id",
							"value": "<checkout-id>",
							"description": "List of ids that should be included in the result. ?id=A&id=B&id=X\n"
						}
					]
				},
				"description": "List all Checkout sessions\nscopes:\n- admin:checkout\n- read:checkout\n"
			},
			"response": [
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions?limit=10&starting_after=<checkout-id>&id=<checkout-id>&id=<checkout-id>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "limit",
									"value": "10"
								},
								{
									"key": "starting_after",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions?limit=10&starting_after=<checkout-id>&id=<checkout-id>&id=<checkout-id>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "limit",
									"value": "10"
								},
								{
									"key": "starting_after",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions?limit=10&starting_after=<checkout-id>&id=<checkout-id>&id=<checkout-id>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "limit",
									"value": "10"
								},
								{
									"key": "starting_after",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "list checkout sessions",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions?limit=10&starting_after=<checkout-id>&id=<checkout-id>&id=<checkout-id>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "limit",
									"value": "10"
								},
								{
									"key": "starting_after",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "[\n {\n  \"configuration\": {\n   \"auto_capture\": \"<boolean>\",\n   \"channel\": \"<string>\",\n   \"publish\": [\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"default_payment_type\": \"<string>\",\n  \"instabank\": {\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"postponement\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"netaxept\": {\n    \"type\": \"<string>\",\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"terminal\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"payex\": {\n    \"dynamic_descriptor\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"generate_payment_token\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"no_cvc\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"vipps\": {\n    \"enabled\": \"<boolean>\",\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"dynamic_descriptor\": \"<string>\"\n   },\n   \"collector\": {\n    \"type\": \"d\",\n    \"dynamic_descriptor\": \"<string>\",\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b_preapproved\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"santander\": {\n    \"type\": \"eiusmod cupidatat\",\n    \"debit_account\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"branding_name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"swish\": {\n    \"type\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"discounts\": {\n    \"express_discount_code\": {\n     \"enabled\": \"<boolean>\"\n    },\n    \"order\": {\n     \"enabled\": false\n    }\n   },\n   \"theme\": {\n    \"backdrop\": \"<string>\",\n    \"primary\": \"<string>\",\n    \"text\": \"<string>\",\n    \"warning\": \"<string>\",\n    \"error\": \"<string>\",\n    \"font-family\": \"<string>\"\n   },\n   \"merchant\": {\n    \"id\": \"<string>\",\n    \"logo_url\": \"<uri>\",\n    \"name\": \"TKP tech AS\"\n   }\n  },\n  \"order\": {\n   \"merchant_reference\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  },\n  \"url\": {\n   \"return_url\": \"https://example.com/accept\",\n   \"callback_url\": \"https://example.com/callback?method=GET\",\n   \"merchant_terms_url\": \"https://example.com/terms.html\"\n  },\n  \"id\": \"<string>\",\n  \"created_at\": \"<dateTime>\",\n  \"customer\": {\n   \"customer_id\": \"<string>\",\n   \"email\": \"john.doe@example.com\",\n   \"phone_number\": \"+4799999999\",\n   \"tokens\": {\n    \"payex.creditcard\": {}\n   }\n  },\n  \"expires_at\": \"<dateTime>\",\n  \"express\": {\n   \"shipping_options\": [\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    }\n   ],\n   \"discount_codes\": {\n    \"max_count\": \"<number>\",\n    \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n   },\n   \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n   \"customer_types\": [\n    \"b2c\",\n    \"b2b\"\n   ]\n  },\n  \"updated_at\": \"<dateTime>\",\n  \"customer_ip\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"events\": [\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n    \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   },\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n    \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   }\n  ],\n  \"transaction_id\": \"<string>\",\n  \"cancelled_by\": \"nostrud deserunt enim sint\",\n  \"cancelled_at\": \"1999-05-08T21:28:54.918Z\"\n },\n {\n  \"configuration\": {\n   \"auto_capture\": \"<boolean>\",\n   \"channel\": \"<string>\",\n   \"publish\": [\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"default_payment_type\": \"<string>\",\n   \"instabank\": {\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"postponement\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"netaxept\": {\n    \"type\": \"<string>\",\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"terminal\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"payex\": {\n    \"dynamic_descriptor\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"generate_payment_token\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"no_cvc\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"vipps\": {\n    \"enabled\": \"<boolean>\",\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"dynamic_descriptor\": \"<string>\"\n   },\n   \"collector\": {\n    \"type\": \"esse aliqua laborum eiusmod\",\n    \"dynamic_descriptor\": \"<string>\",\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b_preapproved\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"santander\": {\n    \"type\": \"nisi aliqua voluptate\",\n    \"debit_account\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"branding_name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"swish\": {\n    \"type\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"discounts\": {\n    \"express_discount_code\": {\n     \"enabled\": \"<boolean>\"\n    },\n    \"order\": {\n     \"enabled\": false\n    }\n   },\n   \"theme\": {\n    \"backdrop\": \"<string>\",\n    \"primary\": \"<string>\",\n    \"text\": \"<string>\",\n    \"warning\": \"<string>\",\n    \"error\": \"<string>\",\n    \"font-family\": \"<string>\"\n   },\n   \"merchant\": {\n    \"id\": \"<string>\",\n    \"logo_url\": \"<uri>\",\n    \"name\": \"TKP tech AS\"\n   }\n  },\n  \"order\": {\n   \"merchant_reference\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  },\n  \"url\": {\n   \"return_url\": \"https://example.com/accept\",\n   \"callback_url\": \"https://example.com/callback?method=GET\",\n   \"merchant_terms_url\": \"https://example.com/terms.html\"\n  },\n  \"id\": \"<string>\",\n  \"created_at\": \"<dateTime>\",\n  \"customer\": {\n   \"customer_id\": \"<string>\",\n   \"email\": \"john.doe@example.com\",\n   \"phone_number\": \"+4799999999\",\n   \"tokens\": {\n    \"payex.creditcard\": {}\n   }\n  },\n  \"expires_at\": \"<dateTime>\",\n  \"express\": {\n   \"shipping_options\": [\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    }\n   ],\n   \"discount_codes\": {\n    \"max_count\": \"<number>\",\n    \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n   },\n   \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n   \"customer_types\": [\n    \"b2c\",\n    \"b2b\"\n   ]\n  },\n  \"updated_at\": \"<dateTime>\",\n  \"customer_ip\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"events\": [\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n    \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   },\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n     \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   }\n  ],\n  \"transaction_id\": \"<string>\",\n  \"cancelled_by\": \"et anim\",\n  \"cancelled_at\": \"1944-03-25T22:55:53.178Z\"\n }\n]"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions?limit=10&starting_after=<checkout-id>&id=<checkout-id>&id=<checkout-id>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions"
							],
							"query": [
								{
									"key": "limit",
									"value": "10"
								},
								{
									"key": "starting_after",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								},
								{
									"key": "id",
									"value": "<checkout-id>"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "Get checkout session details",
			"event": [
				{
					"listen": "test",
					"script": {
						"exec": [
							"const transactionId = pm.response.json().transaction_id;",
							"pm.environment.set(\"transactionId\", transactionId);",
							""
						],
						"type": "text/javascript"
					}
				}
			],
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{checkoutUrl}}/sessions/:id",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"sessions",
						":id"
					],
					"variable": [
						{
							"key": "id",
							"value": "{{sessionId}}",
							"description": "(Required) The ID of the session"
						}
					]
				},
				"description": "scopes:\n- admin:checkout\n- read:checkout\n"
			},
			"response": [
				{
					"name": "Resource was not found",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Not Found",
					"code": 404,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "checkout session",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"configuration\": {\n  \"auto_capture\": \"<boolean>\",\n  \"channel\": \"<string>\",\n  \"publish\": [\n   {\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"channel\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   {\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"channel\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  ],\n  \"default_payment_type\": \"<string>\",\n  \"instabank\": {\n   \"finance\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"product\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"invoice\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"product\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"installment\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"postponement\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"netaxept\": {\n   \"type\": \"<string>\",\n   \"creditcard\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"terminal\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"payex\": {\n   \"dynamic_descriptor\": \"<string>\",\n   \"swish\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"creditcard\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"generate_payment_token\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"no_cvc\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"vipps\": {\n   \"enabled\": \"<boolean>\",\n   \"payability\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   },\n   \"dynamic_descriptor\": \"<string>\"\n  },\n  \"collector\": {\n   \"type\": \"tempor pariatur officia ad\",\n   \"dynamic_descriptor\": \"<string>\",\n   \"invoice\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"invoice_b2b\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"invoice_b2b_preapproved\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"accounts\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"finance\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"installment\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"santander\": {\n   \"type\": \"esse\",\n   \"debit_account\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"branding_name\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"accounts\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"swish\": {\n   \"type\": \"<string>\",\n   \"swish\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"discounts\": {\n   \"express_discount_code\": {\n    \"enabled\": \"<boolean>\"\n   },\n   \"order\": {\n    \"enabled\": false\n   }\n  },\n  \"theme\": {\n   \"backdrop\": \"<string>\",\n   \"primary\": \"<string>\",\n   \"text\": \"<string>\",\n   \"warning\": \"<string>\",\n   \"error\": \"<string>\",\n   \"font-family\": \"<string>\"\n  },\n  \"merchant\": {\n   \"id\": \"<string>\",\n   \"logo_url\": \"<uri>\",\n   \"name\": \"TKP tech AS\"\n  }\n },\n \"order\": {\n  \"merchant_reference\": {\n   \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n  }\n },\n \"url\": {\n  \"return_url\": \"https://example.com/accept\",\n  \"callback_url\": \"https://example.com/callback?method=GET\",\n  \"merchant_terms_url\": \"https://example.com/terms.html\"\n },\n \"id\": \"<string>\",\n \"created_at\": \"<dateTime>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\",\n  \"tokens\": {\n   \"payex.creditcard\": {}\n  }\n },\n \"expires_at\": \"<dateTime>\",\n \"express\": {\n  \"shipping_options\": [\n   {\n    \"id\": \"bring-pick-up-00001\",\n    \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n    \"amount\": 3900,\n    \"operator\": \"Bring\",\n    \"title\": \"Standard\",\n    \"countries\": [\n     \"NO\",\n     \"NO\"\n    ],\n    \"vat_amount\": 975,\n    \"vat\": 25,\n    \"description\": \"Pick up at your nearest postal office\",\n    \"delivery_method\": \"pick_up\",\n    \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n    \"eta\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"time_slot\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"pick_up_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\",\n     \"distance\": \"<number>\"\n    }\n   },\n   {\n    \"id\": \"bring-pick-up-00001\",\n    \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n    \"amount\": 3900,\n    \"operator\": \"Bring\",\n    \"title\": \"Standard\",\n    \"countries\": [\n     \"NO\",\n     \"NO\"\n    ],\n    \"vat_amount\": 975,\n    \"vat\": 25,\n    \"description\": \"Pick up at your nearest postal office\",\n    \"delivery_method\": \"pick_up\",\n    \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n    \"eta\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"time_slot\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"pick_up_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\",\n     \"distance\": \"<number>\"\n    }\n   }\n  ],\n  \"discount_codes\": {\n   \"max_count\": \"<number>\",\n   \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n  },\n  \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n  \"customer_types\": [\n   \"b2c\",\n   \"b2b\"\n  ]\n },\n \"updated_at\": \"<dateTime>\",\n \"customer_ip\": \"<string>\",\n \"user_agent\": \"<string>\",\n \"events\": [\n  {\n   \"created_at\": \"<dateTime>\",\n   \"id\": \"<string>\",\n   \"name\": \"<string>\",\n   \"details\": {\n    \"error\": \"<string>\",\n    \"payment_product_type\": \"<string>\",\n    \"amount\": \"<integer>\",\n    \"shipping_option\": {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    \"shipping_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\"\n    },\n    \"collector:installment:products\": [\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    ]\n   }\n  },\n  {\n   \"created_at\": \"<dateTime>\",\n   \"id\": \"<string>\",\n   \"name\": \"<string>\",\n   \"details\": {\n    \"error\": \"<string>\",\n    \"payment_product_type\": \"<string>\",\n    \"amount\": \"<integer>\",\n    \"shipping_option\": {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    \"shipping_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\"\n    },\n   \"payex:payment:id\": \"<string>\",\n    \"collector:installment:products\": [\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    ]\n   }\n  }\n ],\n \"transaction_id\": \"<string>\",\n \"cancelled_by\": \"veniam Duis irure adipisicing\",\n \"cancelled_at\": \"1991-09-04T14:01:52.188Z\"\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "Get a transaction",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{checkoutUrl}}/transactions/:id",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"transactions",
						":id"
					],
					"variable": [
						{
							"key": "id",
							"value": "{{transactionId}}",
							"description": "(Required) The ID of the transaction"
						}
					]
				},
				"description": "scopes:\n- admin:checkout\n- read:checkout\n"
			},
			"response": [
				{
					"name": "Processor temporarily unavailable",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Service Unavailable",
					"code": 503,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Resource was not found",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Not Found",
					"code": 404,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Transaction",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "GET",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id?includes=<string>&includes=<string>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id"
							],
							"query": [
								{
									"key": "includes",
									"value": "<string>"
								},
								{
									"key": "includes",
									"value": "<string>"
								}
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "Cancel session",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [],
				"url": {
					"raw": "{{checkoutUrl}}/sessions/:id/cancel",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"sessions",
						":id",
						"cancel"
					],
					"variable": [
						{
							"key": "id",
							"value": "{{sessionId}}"
						}
					]
				},
				"description": "\nCancel a session\n\nThe session transaction will be voided in case where it is\ninitialized or authorized.\n\nCancel is not allowed in case where the current transaction\nstate is not initialized or authorized.\n\nscopes:\n- admin:checkout\n- write:checkout\n"
			},
			"response": [
				{
					"name": "checkout session",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id/cancel",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id",
								"cancel"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"configuration\": {\n  \"auto_capture\": \"<boolean>\",\n  \"channel\": \"<string>\",\n  \"publish\": [\n   {\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"channel\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   {\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"channel\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  ],\n  \"default_payment_type\": \"<string>\",\n    \"instabank\": {\n   \"finance\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"product\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"invoice\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"product\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"installment\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"postponement\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"netaxept\": {\n   \"type\": \"<string>\",\n   \"creditcard\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"terminal\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"payex\": {\n   \"dynamic_descriptor\": \"<string>\",\n   \"swish\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"creditcard\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"generate_payment_token\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"no_cvc\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"vipps\": {\n   \"enabled\": \"<boolean>\",\n   \"payability\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   },\n   \"dynamic_descriptor\": \"<string>\"\n  },\n  \"collector\": {\n   \"type\": \"tempor pariatur officia ad\",\n   \"dynamic_descriptor\": \"<string>\",\n   \"invoice\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"invoice_b2b\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"invoice_b2b_preapproved\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"accounts\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"finance\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"installment\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"santander\": {\n   \"type\": \"esse\",\n   \"debit_account\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"branding_name\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"accounts\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"swish\": {\n   \"type\": \"<string>\",\n   \"swish\": {\n    \"enabled\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"type\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  },\n  \"discounts\": {\n   \"express_discount_code\": {\n    \"enabled\": \"<boolean>\"\n   },\n   \"order\": {\n    \"enabled\": false\n   }\n  },\n  \"theme\": {\n   \"backdrop\": \"<string>\",\n   \"primary\": \"<string>\",\n   \"text\": \"<string>\",\n   \"warning\": \"<string>\",\n   \"error\": \"<string>\",\n   \"font-family\": \"<string>\"\n  },\n  \"merchant\": {\n   \"id\": \"<string>\",\n   \"logo_url\": \"<uri>\",\n   \"name\": \"TKP tech AS\"\n  }\n },\n \"order\": {\n  \"merchant_reference\": {\n   \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n  }\n },\n \"url\": {\n  \"return_url\": \"https://example.com/accept\",\n  \"callback_url\": \"https://example.com/callback?method=GET\",\n  \"merchant_terms_url\": \"https://example.com/terms.html\"\n },\n \"id\": \"<string>\",\n \"created_at\": \"<dateTime>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\",\n  \"tokens\": {\n   \"payex.creditcard\": {}\n  }\n },\n \"expires_at\": \"<dateTime>\",\n \"express\": {\n  \"shipping_options\": [\n   {\n    \"id\": \"bring-pick-up-00001\",\n    \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n    \"amount\": 3900,\n    \"operator\": \"Bring\",\n    \"title\": \"Standard\",\n    \"countries\": [\n     \"NO\",\n     \"NO\"\n    ],\n    \"vat_amount\": 975,\n    \"vat\": 25,\n    \"description\": \"Pick up at your nearest postal office\",\n    \"delivery_method\": \"pick_up\",\n    \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n    \"eta\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"time_slot\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"pick_up_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\",\n     \"distance\": \"<number>\"\n    }\n   },\n   {\n    \"id\": \"bring-pick-up-00001\",\n    \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n    \"amount\": 3900,\n    \"operator\": \"Bring\",\n    \"title\": \"Standard\",\n    \"countries\": [\n     \"NO\",\n     \"NO\"\n    ],\n    \"vat_amount\": 975,\n    \"vat\": 25,\n    \"description\": \"Pick up at your nearest postal office\",\n    \"delivery_method\": \"pick_up\",\n    \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n    \"eta\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"time_slot\": {\n     \"starts_at\": \"2020-10-14T19:00:00Z\",\n     \"ends_at\": \"2020-10-14T20:00:00Z\"\n    },\n    \"pick_up_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\",\n     \"distance\": \"<number>\"\n    }\n   }\n  ],\n  \"discount_codes\": {\n   \"max_count\": \"<number>\",\n   \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n  },\n  \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n  \"customer_types\": [\n   \"b2c\",\n   \"b2b\"\n  ]\n },\n \"updated_at\": \"<dateTime>\",\n \"customer_ip\": \"<string>\",\n \"user_agent\": \"<string>\",\n \"events\": [\n  {\n   \"created_at\": \"<dateTime>\",\n   \"id\": \"<string>\",\n   \"name\": \"<string>\",\n   \"details\": {\n    \"error\": \"<string>\",\n    \"payment_product_type\": \"<string>\",\n    \"amount\": \"<integer>\",\n    \"shipping_option\": {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    \"shipping_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\"\n    },\n    \"collector:installment:products\": [\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    ]\n   }\n  },\n  {\n   \"created_at\": \"<dateTime>\",\n   \"id\": \"<string>\",\n   \"name\": \"<string>\",\n   \"details\": {\n    \"error\": \"<string>\",\n    \"payment_product_type\": \"<string>\",\n    \"amount\": \"<integer>\",\n    \"shipping_option\": {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    \"shipping_address\": {\n     \"first_name\": \"John\",\n     \"last_name\": \"Doe\",\n     \"address_line\": \"<string>\",\n     \"address_line_2\": \"<string>\",\n     \"co_address\": \"Land Lord\",\n     \"business_name\": \"<string>\",\n     \"postal_code\": \"0349\",\n     \"postal_place\": \"Oslo\",\n     \"country\": \"NO\",\n     \"phone_number\": \"<string>\",\n     \"email\": \"<string>\",\n     \"latitude\": \"<number>\",\n     \"longitude\": \"<number>\",\n     \"comment\": \"<string>\",\n     \"organization_number\": \"<string>\",\n     \"customer_reference\": \"<string>\",\n     \"cost_center\": \"<string>\"\n    },\n    \"collector:installment:products\": [\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    ]\n   }\n  }\n ],\n \"transaction_id\": \"<string>\",\n \"cancelled_by\": \"veniam Duis irure adipisicing\",\n \"cancelled_at\": \"1991-09-04T14:01:52.188Z\"\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id/cancel",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id",
								"cancel"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id/cancel",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id",
								"cancel"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id/cancel",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id",
								"cancel"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id/cancel",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id",
								"cancel"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Resource was not found",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/sessions/:session_id/cancel",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions",
								":session_id",
								"cancel"
							],
							"variable": [
								{
									"key": "session_id"
								}
							]
						}
					},
					"status": "Not Found",
					"code": 404,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "Capture a transaction",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"amount\": 29990\n}"
				},
				"url": {
					"raw": "{{checkoutUrl}}/transactions/:id/capture",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"transactions",
						":id",
						"capture"
					],
					"variable": [
						{
							"key": "id",
							"value": "{{transactionId}}",
							"description": "(Required) The ID of the transaction"
						}
					]
				},
				"description": "Captures a transaction that was created with the Checkout\nendpoint with a `capture_now` value of `false`.\n\n#### Capture Instabank transaction\n\nNote that `items` is required when capturing a transaction\nwith `payment_product=instabank`. The items must include\nthe lines to Capture, with `line_id`, `quantity` and `amount`.\n\nscopes:\n- admin:checkout\n- write:checkout\n"
			},
			"response": [
				{
					"name": "Processor temporarily unavailable",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Service Unavailable",
					"code": 503,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Capture created",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Request accepted for processing.\n",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Accepted",
					"code": 202,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "event-request-id",
							"value": "consectetur sunt",
							"description": "The request_id of the event that was accepted for processing.\nThe transaction will be updated with a new event with\n`correlation_request_id` set when the operation completes.\n"
						},
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Resource was not found",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"capture_reference\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/capture",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"capture"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Not Found",
					"code": 404,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "Refund transaction",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"amount\": 29990\n}"
				},
				"url": {
					"raw": "{{checkoutUrl}}/transactions/:id/refund",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"transactions",
						":id",
						"refund"
					],
					"variable": [
						{
							"key": "id",
							"value": "{{transactionId}}",
							"description": "(Required) The ID of the transaction"
						}
					]
				},
				"description": "Once a transaction has been successfully captured,\na refund operation is available. Like other operations,\nrefund can be partial or total\n\n#### Refund Instabank transaction\n\nNote that `items` is required when refunding a transaction\nwith `payment_product=instabank`. The items must include the\nlines to Refund, with `line_id`, `quantity` and `amount`.\n\nscopes:\n- admin:checkout\n- write:checkout\n"
			},
			"response": [
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Processor temporarily unavailable",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Service Unavailable",
					"code": 503,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Refund created",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				},
				{
					"name": "Request accepted for processing.\n",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Accepted",
					"code": 202,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "event-request-id",
							"value": "consectetur sunt",
							"description": "The request_id of the event that was accepted for processing.\nThe transaction will be updated with a new event with\n`correlation_request_id` set when the operation completes.\n"
						},
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Resource was not found",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Not Found",
					"code": 404,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"amount\": \"<integer>\",\n    \"reason\": \"<string>\",\n    \"items\": [\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        },\n        {\n            \"amount\": 29990,\n            \"line_id\": \"1\",\n            \"id\": \"item_01\",\n            \"groups\": [\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                },\n                {\n                    \"id\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    },\n                    \"name\": {\n                        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                    }\n                }\n            ],\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"vat_amount\": 6000,\n            \"vat\": 25,\n            \"unit_volume\": \"<number>\",\n            \"unit_weight\": \"<number>\",\n            \"unit_dimensional_weight\": \"<number>\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/refund",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"refund"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		},
		{
			"name": "Void transaction",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{checkoutUrl}}/transactions/:id/void",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"transactions",
						":id",
						"void"
					],
					"variable": [
						{
							"key": "id",
							"value": "{{transactionId}}",
							"description": "(Required) The ID of the transaction"
						}
					]
				},
				"description": "At any moment before capture of a transaction, it is\npossible to cancel an authorization. This operation is\ncalled voiding and can be performed by doing a POST to\nthis endpoint\n\nscopes:\n- admin:checkout\n- write:checkout\n"
			},
			"response": [
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Processor temporarily unavailable",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Service Unavailable",
					"code": 503,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Request accepted for processing.\n",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Accepted",
					"code": 202,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "event-request-id",
							"value": "consectetur sunt",
							"description": "The request_id of the event that was accepted for processing.\nThe transaction will be updated with a new event with\n`correlation_request_id` set when the operation completes.\n"
						},
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				},
				{
					"name": "Resource was not found",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Not Found",
					"code": 404,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Transaction voided",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/transactions/:id/void",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"transactions",
								":id",
								"void"
							],
							"variable": [
								{
									"key": "id"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"payment_product\": \"<string>\",\n \"amount\": 68300,\n \"currency\": \"NOK\",\n \"id\": \"P00000000.465UfBENeLpkBvwmqfTC4k\",\n \"merchant_reference\": \"<string>\",\n \"merchant_reference_2\": \"<string>\",\n \"dynamic_descriptor\": \"<string>\",\n \"customer\": {\n  \"customer_id\": \"<string>\",\n  \"email\": \"john.doe@example.com\",\n  \"phone_number\": \"+4799999999\"\n },\n \"customer_ip\": \"127.0.0.1\",\n \"user_agent\": \"Mozilla/5.0 ...\",\n \"shipping_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"shipping_option\": {\n  \"id\": \"bring-pick-up-00001\",\n  \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n  \"amount\": 3900,\n  \"operator\": \"Bring\",\n  \"title\": \"Standard\",\n  \"countries\": [\n   \"NO\",\n   \"NO\"\n  ],\n  \"vat_amount\": 975,\n  \"vat\": 25,\n  \"description\": \"Pick up at your nearest postal office\",\n  \"delivery_method\": \"pick_up\",\n  \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n  \"eta\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"time_slot\": {\n   \"starts_at\": \"2020-10-14T19:00:00Z\",\n   \"ends_at\": \"2020-10-14T20:00:00Z\"\n  },\n  \"pick_up_address\": {\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"address_line\": \"<string>\",\n   \"address_line_2\": \"<string>\",\n   \"co_address\": \"Land Lord\",\n   \"business_name\": \"<string>\",\n   \"postal_code\": \"0349\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<string>\",\n   \"latitude\": \"<number>\",\n   \"longitude\": \"<number>\",\n   \"comment\": \"<string>\",\n   \"organization_number\": \"<string>\",\n   \"customer_reference\": \"<string>\",\n   \"cost_center\": \"<string>\",\n   \"distance\": \"<number>\"\n  }\n },\n \"billing_address\": {\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"address_line\": \"<string>\",\n  \"address_line_2\": \"<string>\",\n  \"co_address\": \"Land Lord\",\n  \"business_name\": \"<string>\",\n  \"postal_code\": \"0349\",\n  \"postal_place\": \"Oslo\",\n  \"country\": \"NO\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<string>\",\n  \"latitude\": \"<number>\",\n  \"longitude\": \"<number>\",\n  \"comment\": \"<string>\",\n  \"organization_number\": \"<string>\",\n  \"customer_reference\": \"<string>\",\n  \"cost_center\": \"<string>\"\n },\n \"store\": {\n  \"id\": \"sc029\",\n  \"name\": \"SC Oslo\",\n  \"business_name\": \"SC Oslo AS\",\n  \"address\": {\n   \"address_line\": \"Sommerkroveien 34\",\n   \"postal_place\": \"Oslo\",\n   \"country\": \"NO\",\n   \"address_line_2\": \"PB 123\",\n   \"postal_code\": \"0349\"\n  },\n  \"chain\": \"SuperChain\",\n  \"email\": \"contact@superchain.com\",\n  \"gln\": \"5790001398644\",\n  \"organization_number\": \"123456789MVA\",\n  \"phone_number\": \"+4738260107\",\n  \"mcc\": \"5814\",\n  \"bax\": \"102603\",\n  \"terminal_id\": \"T0292\"\n },\n \"items\": [\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  },\n  {\n   \"id\": \"item_01\",\n   \"groups\": [\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"id\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"line_id\": \"1\",\n   \"description\": \"Stablestol\",\n   \"quantity\": 1,\n   \"amount\": 29990,\n   \"vat_amount\": 6000,\n   \"vat\": 25,\n   \"unit_volume\": \"<number>\",\n   \"unit_weight\": \"<number>\",\n   \"unit_dimensional_weight\": \"<number>\",\n   \"eligible_for_discount\": false,\n   \"is_changed\": \"<boolean>\",\n   \"discount_lines\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ]\n  }\n ],\n \"url\": {\n  \"callback_url\": \"<uri>\"\n },\n \"events\": [\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  },\n  {\n   \"transaction_status\": \"<string>\",\n   \"event\": \"CAPTURE\",\n   \"success\": \"<boolean>\",\n   \"correction\": {\n    \"status\": \"<string>\",\n    \"remaining_capture_amount\": 50000,\n    \"remaining_refund_amount\": 50000,\n    \"remaining_void_amount\": 50000\n   },\n   \"error\": {\n    \"message\": \"<string>\",\n    \"code\": \"<string>\"\n   },\n   \"amount\": \"<number>\",\n   \"calculated_vat_amount\": \"<number>\",\n   \"items\": [\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    },\n    {\n     \"id\": \"item_01\",\n     \"groups\": [\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      },\n      {\n       \"id\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       },\n       \"name\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n       }\n      }\n     ],\n     \"line_id\": \"1\",\n     \"description\": \"Stablestol\",\n     \"quantity\": 1,\n     \"amount\": 29990,\n     \"vat_amount\": 6000,\n     \"vat\": 25,\n     \"unit_volume\": \"<number>\",\n     \"unit_weight\": \"<number>\",\n     \"unit_dimensional_weight\": \"<number>\"\n    }\n   ],\n   \"created_at\": \"<dateTime>\",\n   \"created_by\": \"<string>\",\n   \"request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\",\n   \"metadata\": \"<object>\",\n   \"correlation_request_id\": \"05c91a5b-9c3d-4214-a7e1-e472dbe22eb9\"\n  }\n ],\n \"session_id\": \"P00000000.465U8CUzaPVpneu1wt8Wei\",\n \"updated_at\": \"<dateTime>\",\n \"created_at\": \"<dateTime>\",\n \"metadata\": \"<object>\"\n}"
				}
			]
		},
		{
			"name": "Create checkout session from profile",
			"event": [
				{
					"listen": "test",
					"script": {
						"exec": [
							"const sessionId = pm.response.json().id;",
							"pm.environment.set(\"sessionId\", sessionId);"
						],
						"type": "text/javascript"
					}
				}
			],
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{accessToken}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"profile_id\": \"{{sessionProfileId}}\",\n    \"order\": {\n        \"merchant_reference\": \"{{$randomLoremSlug}}\",\n        \"amount\": 29990,\n        \"currency\": \"NOK\",\n        \"vat_amount\": 6000,\n        \"items\": [{\n            \"id\": \"item_01\",\n            \"line_id\": \"1\",\n            \"description\": \"Stablestol\",\n            \"quantity\": 1,\n            \"amount\": 29990,\n            \"vat_amount\": 6000,\n            \"vat\": 25\n        }]\n    },\n    \"url\": {\n        \"return_url\": \"https://checkout.dintero.com/result/\"\n    }\n}"
				},
				"url": {
					"raw": "{{checkoutUrl}}/sessions-profile",
					"host": [
						"{{checkoutUrl}}"
					],
					"path": [
						"sessions-profile"
					]
				},
				"description": "Create a corresponding Checkout Session for an order placed in your system\nusing predefined session profile\n\n#### Session with Instabank\n\nNote that `items` is a required property when creating a session with\nInstabank configured.\n\nscopes:\n- admin:checkout\n- write:checkout\n"
			},
			"response": [
				{
					"name": "Bad / Invalid request",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"profile_id\": \"<string>\",\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"in sunt\",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"dolor dolor fugiat\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions-profile?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions-profile"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "checkout session created",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"profile_id\": \"<string>\",\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"in sunt\",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"dolor dolor fugiat\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions-profile?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions-profile"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"id\": \"Excepteur amet nisi exercitation\",\n \"url\": \"https://checkout.api.dintero.com/v1/view/9ea1610a357dc8189081c4cb955f26f612d91367\",\n \"publish\": [\n  {\n   \"type\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   },\n   \"channel\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  },\n  {\n   \"type\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   },\n   \"channel\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  }\n ],\n \"session\": {\n  \"configuration\": {\n   \"auto_capture\": \"<boolean>\",\n   \"channel\": \"<string>\",\n   \"publish\": [\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    {\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"channel\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   ],\n   \"default_payment_type\": \"<string>\",\n   \"instabank\": {\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"product\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"postponement\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"netaxept\": {\n    \"type\": \"<string>\",\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"terminal\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"payex\": {\n    \"dynamic_descriptor\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"creditcard\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"generate_payment_token\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"no_cvc\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"vipps\": {\n    \"enabled\": \"<boolean>\",\n    \"payability\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"dynamic_descriptor\": \"<string>\"\n   },\n   \"collector\": {\n    \"type\": \"id\",\n    \"dynamic_descriptor\": \"<string>\",\n    \"invoice\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"invoice_b2b_preapproved\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"finance\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    },\n    \"installment\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"santander\": {\n    \"type\": \"consectetur et\",\n    \"debit_account\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"branding_name\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"accounts\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"swish\": {\n    \"type\": \"<string>\",\n    \"swish\": {\n     \"enabled\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"type\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     },\n     \"payability\": {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n     }\n    }\n   },\n   \"discounts\": {\n    \"express_discount_code\": {\n     \"enabled\": \"<boolean>\"\n    },\n    \"order\": {\n     \"enabled\": false\n    }\n   },\n   \"theme\": {\n    \"backdrop\": \"<string>\",\n    \"primary\": \"<string>\",\n    \"text\": \"<string>\",\n    \"warning\": \"<string>\",\n    \"error\": \"<string>\",\n    \"font-family\": \"<string>\"\n   },\n   \"merchant\": {\n    \"id\": \"<string>\",\n    \"logo_url\": \"<uri>\",\n    \"name\": \"TKP tech AS\"\n   }\n  },\n  \"order\": {\n   \"merchant_reference\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  },\n  \"url\": {\n   \"return_url\": \"https://example.com/accept\",\n   \"callback_url\": \"https://example.com/callback?method=GET\",\n   \"merchant_terms_url\": \"https://example.com/terms.html\"\n  },\n  \"id\": \"<string>\",\n  \"created_at\": \"<dateTime>\",\n  \"customer\": {\n   \"customer_id\": \"<string>\",\n   \"email\": \"john.doe@example.com\",\n   \"phone_number\": \"+4799999999\",\n   \"tokens\": {\n    \"payex.creditcard\": {}\n   }\n  },\n  \"expires_at\": \"<dateTime>\",\n  \"express\": {\n   \"shipping_options\": [\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    },\n    {\n     \"id\": \"bring-pick-up-00001\",\n     \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n     \"amount\": 3900,\n     \"operator\": \"Bring\",\n     \"title\": \"Standard\",\n     \"countries\": [\n      \"NO\",\n      \"NO\"\n     ],\n     \"vat_amount\": 975,\n     \"vat\": 25,\n     \"description\": \"Pick up at your nearest postal office\",\n     \"delivery_method\": \"pick_up\",\n     \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n     \"eta\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"time_slot\": {\n      \"starts_at\": \"2020-10-14T19:00:00Z\",\n      \"ends_at\": \"2020-10-14T20:00:00Z\"\n     },\n     \"pick_up_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\",\n      \"distance\": \"<number>\"\n     }\n    }\n   ],\n   \"discount_codes\": {\n    \"max_count\": \"<number>\",\n    \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n   },\n   \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n   \"customer_types\": [\n    \"b2c\",\n    \"b2b\"\n   ]\n  },\n  \"updated_at\": \"<dateTime>\",\n  \"customer_ip\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"events\": [\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n     \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   },\n   {\n    \"created_at\": \"<dateTime>\",\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"details\": {\n     \"error\": \"<string>\",\n     \"payment_product_type\": \"<string>\",\n     \"amount\": \"<integer>\",\n     \"shipping_option\": {\n      \"id\": \"bring-pick-up-00001\",\n      \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n      \"amount\": 3900,\n      \"operator\": \"Bring\",\n      \"title\": \"Standard\",\n      \"countries\": [\n       \"NO\",\n       \"NO\"\n      ],\n      \"vat_amount\": 975,\n      \"vat\": 25,\n      \"description\": \"Pick up at your nearest postal office\",\n      \"delivery_method\": \"pick_up\",\n      \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n      \"eta\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"time_slot\": {\n       \"starts_at\": \"2020-10-14T19:00:00Z\",\n       \"ends_at\": \"2020-10-14T20:00:00Z\"\n      },\n      \"pick_up_address\": {\n       \"first_name\": \"John\",\n       \"last_name\": \"Doe\",\n       \"address_line\": \"<string>\",\n       \"address_line_2\": \"<string>\",\n       \"co_address\": \"Land Lord\",\n       \"business_name\": \"<string>\",\n       \"postal_code\": \"0349\",\n       \"postal_place\": \"Oslo\",\n       \"country\": \"NO\",\n       \"phone_number\": \"<string>\",\n       \"email\": \"<string>\",\n       \"latitude\": \"<number>\",\n       \"longitude\": \"<number>\",\n       \"comment\": \"<string>\",\n       \"organization_number\": \"<string>\",\n       \"customer_reference\": \"<string>\",\n       \"cost_center\": \"<string>\",\n       \"distance\": \"<number>\"\n      }\n     },\n     \"shipping_address\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"address_line\": \"<string>\",\n      \"address_line_2\": \"<string>\",\n      \"co_address\": \"Land Lord\",\n      \"business_name\": \"<string>\",\n      \"postal_code\": \"0349\",\n      \"postal_place\": \"Oslo\",\n      \"country\": \"NO\",\n      \"phone_number\": \"<string>\",\n      \"email\": \"<string>\",\n      \"latitude\": \"<number>\",\n      \"longitude\": \"<number>\",\n      \"comment\": \"<string>\",\n      \"organization_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"cost_center\": \"<string>\"\n     },\n     \"payex:payment:id\": \"<string>\",\n     \"collector:installment:products\": [\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n       \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n     ]\n    }\n   }\n  ],\n  \"transaction_id\": \"<string>\",\n  \"cancelled_by\": \"amet incidi\",\n  \"cancelled_at\": \"1969-09-12T01:37:17.626Z\"\n }\n}"
				},
				{
					"name": "Access forbidden, invalid JWT token was used",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"profile_id\": \"<string>\",\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"in sunt\",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"dolor dolor fugiat\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions-profile?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions-profile"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Unauthorized",
					"code": 401,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Unexpected Error",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"profile_id\": \"<string>\",\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"in sunt\",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"dolor dolor fugiat\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions-profile?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions-profile"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Internal Server Error",
					"code": 500,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				},
				{
					"name": "Forbidden",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"description": {
									"content": "Added as a part of security scheme: apikey",
									"type": "text/plain"
								},
								"key": "Authorization",
								"value": "<API Key>"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"order\": {\n        \"merchant_reference\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"profile_id\": \"<string>\",\n    \"url\": {\n        \"return_url\": \"https://example.com/accept\",\n        \"callback_url\": \"https://example.com/callback?method=GET\",\n        \"merchant_terms_url\": \"https://example.com/terms.html\"\n    },\n    \"customer\": {\n        \"customer_id\": \"<string>\",\n        \"email\": \"john.doe@example.com\",\n        \"phone_number\": \"+4799999999\",\n        \"tokens\": {\n            \"payex.creditcard\": {\n                \"payment_token\": \"<string>\"\n            }\n        }\n    },\n    \"expires_at\": \"<dateTime>\",\n    \"configuration\": {\n        \"auto_capture\": \"<boolean>\",\n        \"channel\": \"<string>\",\n        \"publish\": [\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            {\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"channel\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        ],\n        \"default_payment_type\": \"<string>\",\n        \"instabank\": {\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"product\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"postponement\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"netaxept\": {\n            \"type\": \"<string>\",\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"terminal\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"payex\": {\n            \"dynamic_descriptor\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"creditcard\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"generate_payment_token\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"no_cvc\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"vipps\": {\n            \"enabled\": \"<boolean>\",\n            \"payability\": {\n                \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"dynamic_descriptor\": \"<string>\"\n        },\n        \"collector\": {\n            \"type\": \"in sunt\",\n            \"dynamic_descriptor\": \"<string>\",\n            \"invoice\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"invoice_b2b_preapproved\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"finance\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            },\n            \"installment\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"santander\": {\n            \"type\": \"dolor dolor fugiat\",\n            \"debit_account\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"branding_name\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"accounts\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"swish\": {\n            \"type\": \"<string>\",\n            \"swish\": {\n                \"enabled\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"type\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                },\n                \"payability\": {\n                    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n                }\n            }\n        },\n        \"discounts\": {\n            \"express_discount_code\": {\n                \"enabled\": \"<boolean>\"\n            },\n            \"order\": {\n                \"enabled\": false\n            }\n        },\n        \"theme\": {\n            \"backdrop\": \"<string>\",\n            \"primary\": \"<string>\",\n            \"text\": \"<string>\",\n            \"warning\": \"<string>\",\n            \"error\": \"<string>\",\n            \"font-family\": \"<string>\"\n        }\n    },\n    \"express\": {\n        \"shipping_options\": [\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            },\n            {\n                \"id\": \"bring-pick-up-00001\",\n                \"line_id\": \"bring-pick-up-00001-location-0a1f6b\",\n                \"amount\": 3900,\n                \"operator\": \"Bring\",\n                \"title\": \"Standard\",\n                \"countries\": [\n                    \"NO\",\n                    \"NO\"\n                ],\n                \"vat_amount\": 975,\n                \"vat\": 25,\n                \"description\": \"Pick up at your nearest postal office\",\n                \"delivery_method\": \"pick_up\",\n                \"operator_product_id\": \"pick-up-00001-location-0a1f6b\",\n                \"eta\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"time_slot\": {\n                    \"starts_at\": \"2020-10-14T19:00:00Z\",\n                    \"ends_at\": \"2020-10-14T20:00:00Z\"\n                },\n                \"pick_up_address\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address_line\": \"<string>\",\n                    \"address_line_2\": \"<string>\",\n                    \"co_address\": \"Land Lord\",\n                    \"business_name\": \"<string>\",\n                    \"postal_code\": \"0349\",\n                    \"postal_place\": \"Oslo\",\n                    \"country\": \"NO\",\n                    \"phone_number\": \"<string>\",\n                    \"email\": \"<string>\",\n                    \"latitude\": \"<number>\",\n                    \"longitude\": \"<number>\",\n                    \"comment\": \"<string>\",\n                    \"organization_number\": \"<string>\",\n                    \"customer_reference\": \"<string>\",\n                    \"cost_center\": \"<string>\",\n                    \"distance\": \"<number>\"\n                }\n            }\n        ],\n        \"discount_codes\": {\n            \"max_count\": \"<number>\",\n            \"callback_url\": \"https://example.com/order/00128110/discount_codes_updated\"\n        },\n        \"shipping_address_callback_url\": \"https://example.com/order/00128110/address_updated\",\n        \"customer_types\": [\n            \"b2c\",\n            \"b2b\"\n        ]\n    },\n    \"metadata\": {\n        \"system_x_id\": \"XAB1239\",\n        \"number_x\": 1921\n    }\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/sessions-profile?include_session=<boolean>",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"sessions-profile"
							],
							"query": [
								{
									"key": "include_session",
									"value": "<boolean>"
								}
							]
						}
					},
					"status": "Forbidden",
					"code": 403,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "{\n \"error\": {\n  \"message\": \"culpa ut\",\n  \"code\": \"ad irure et dolore\"\n }\n}"
				}
			]
		}
	],
	"auth": {
		"type": "bearer",
		"bearer": [
			{
				"key": "token",
				"value": "{{accessToken}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	]
}
