diff --git a/postman/payu-europe/PAYMENT_PAGE/README.md b/postman/payu-europe/PAYMENT_PAGE/README.md new file mode 100644 index 0000000..5d4526b --- /dev/null +++ b/postman/payu-europe/PAYMENT_PAGE/README.md @@ -0,0 +1,143 @@ +## Introduction +This Postman Collection aids in integrating [PayU Europe Payment Page](https://developers.payu.com/europe/docs/get-started/integration-overview/accept-payment/#example) into the Open Payment Framework (OPF). + +The integration supports: + +* Authorize card +* Settlement +* Refund +* Reversal + +### In summary +In summary, to import the [Postman Collection](mapping_configuration.json), this page will guide you through the following steps: + +a) [Create your PayU Europe test account](https://registration-merch-prod.snd.payu.com/boarding/#/registerSandbox/). + +b) Create a PayU Europe integration in OPF. + +c) Get the credentials for your PayU Europe integration. + +d) Prepare the [Postman Environment](environment_configuration.json) file so the collection can be imported with all your OPF Tenant and PayU Europe Test Account unique values. + +f) Update Configuration for ``Immediate Capture`` + +g) + +### Creating a PayU Europe Account +You can sign up for a free PayU Europe test account by following this document [Registering with PayU](https://developers.payu.com/europe/docs/get-started/set-up-account/register/). + +Once registered, you can log in to your Sandbox [Merchant Panel ](https://merch-prod.snd.payu.com/user/login). + +For more information about the Merchant Panel and its features, see this [documentation](https://developers.payu.com/europe/docs/get-started/set-up-account/management-panel/) + +### Creating a PayU Europe Payment Integration +Create a PayU Europe payment integration in the OPF workbench. For reference, see [Creating Payment Integration +](https://help.sap.com/docs/OPEN_PAYMENT_FRAMEWORK/3580ff1b17144b8780c055bbb7c2bed3/20a64f954df1425391757759011e7e6b.html). + +For step 6: +a) The suggestion value of Merchant ID is the PSP ID, You can found it in your [Merchant Panel](https://merch-prod.snd.payu.com/user/login). + +![](./images/payU_merchant_Id.png) + +b) For the capture method, if you don't want Immediate Capture in OPF, you must disable auto-receive on your POS in the PayU Europe Merchant Panel: + +Go to ``Online payments`` > ``My shops`` >`` POS`` tab, and click on the POS name corresponding to the item you want to use. + +![](./images/payU_captureMethod_1.png) + +At the bottom of the ``Available payment methods`` section, you will find the ``Automatic collection``toggle. Click the ``Disable`` button to disable automatic collection for all payment methods simultaneously. + +![](./images/payU_capturemethod_2.png) + +### Get the credentials for your PayU Europe integration +Authentication involves generating an OAuth token, which is used for further communication with PayU servers. To create a standard OAuth token, you will need the `client_id` and `client_secret` keys, which can be found in your merchant panel. + +To retrieve your credentials: +Go to **Online payments** > **My shops** > **POS** tab, click on your POS name, and you will find the ``client_id`` and ``client_secret`` keys. + +![](./images/payU_credentials.png) + + +### Preparing the Postman environment_configuration file + +**1. Token** + +Get your access token by [creating an external app](https://help.sap.com/docs/OPEN_PAYMENT_FRAMEWORK/8ccca5bb539a49258e924b467ee4e1c2/d927d21974fe4b368e063f72733bf0fe.html) and [making authorized API calls](https://help.sap.com/docs/OPEN_PAYMENT_FRAMEWORK/8ccca5bb539a49258e924b467ee4e1c2/40c792e66e2942209dc853a43533d78d.html). + +Copy the value of the access_token field (it’s a JWT) and set as the ``token`` value in the environment file. + +**IMPORTANT**: Ensure the value is prefixed with **Bearer**. e.g. ``Bearer {{token}}``. + +**2. Root url** + +The ``rootUrl`` is the **BASE URL** of your OPF tenant. + +E.g. if your workbench/OPF cockpit url was this … + +. + +The base Url would be + +https://opf-iss-d0.uis.commerce.stage.context.cloud.sap. + + +**3. Integration ID and Configuration ID** + +The ``integrationId`` and ``configurationId`` values identify the payment integration and payment configuration, which can be found in the top left of your **Configuration Details** page in the OPF workbench. + +* ``integrationId`` maps to ``accountGroupId`` in Postman +* ``configurationId`` maps to ``accountId`` in Postman + +**4. authentication_outbound_oauth2_client_secret_export_1053 and authentication_outbound_oauth2_client_secret_export_1053** + +Obtain your ``apiKey`` and ``apiSecret`` during the [Get the credentials for your PayU Europe integration](#get-the-credentials-for-your-payu-europe--integration-) step. + +**5. capturePattern** +values can be : ``AUTO_CAPTURE``, ``CAPTURE_PER_SHIPMENT``, ``PARTIAL_CAPTURE`` + +**6. posId** +Retrieve your POS ID from your [Merchant Panel](https://merch-prod.snd.payu.com/user/login). +![](images/payu_posId.png) + +**7. refundType** + +The following refund types are available: + +``REFUND_PAYMENT_STANDARD`` – Standard refund procedure +``FAST`` – Expedited refund process with potentially higher fees. Available only to merchants operating through PayU GPO Romania + + + +### Allowlist +Add the following domains to the domain allowlist in OPF workbench. For instructions, see [Adding Tenant-specific Domain to Allowlist +](https://help.sap.com/docs/OPEN_PAYMENT_FRAMEWORK/3580ff1b17144b8780c055bbb7c2bed3/a6836485b4494cfaad4033b4ee7a9c64.html). + +``secure.payu.com`` for Production +``secure.snd.payu.com`` for Sandbox test + + +### Update Configuration for Immediate Capture +If you are using the ``Immediate Capture`` configuration, you must update your Notification configuration after importing the Postman collection into your workbench. + +**Steps:** +1. Navigate to the **Notification** tab +2. Update both **Request Type** and **Transaction Status** values from ``WAITING_FOR_CONFIRMATION`` to ``COMPLETED`` +![](images/payu_immediateCapture.png) + +### Summary + +The environment file is now ready for importing into Postman together with the Mapping Configuration Collection file. Ensure you select the correct environment before running the collection. + +In summary, you should have edited the following variables: + +#### Common +- ``token`` +- ``rootUrl`` +- ``accountGroupId`` +- ``accountId`` + +#### PayU Europe Specific +- ``authentication_outbound_oauth2_client_id_export_1053`` +- ``authentication_outbound_oauth2_client_secret_export_1053`` +- ``posId`` + diff --git a/postman/payu-europe/PAYMENT_PAGE/environment_configuration.json b/postman/payu-europe/PAYMENT_PAGE/environment_configuration.json new file mode 100644 index 0000000..a81f28d --- /dev/null +++ b/postman/payu-europe/PAYMENT_PAGE/environment_configuration.json @@ -0,0 +1,106 @@ +{ + "id": "497c0fd2-9d80-49e3-800f-ac302f147f0f", + "name": "PayU Europe", + "values": [ + { + "key": "token", + "value": "", + "enabled": true + }, + { + "key": "rootUrl", + "value": "https:\/\/opf-iss-d0.opf.commerce.stage.context.cloud.sap", + "enabled": true + }, + { + "key": "service", + "value": "opf", + "enabled": true + }, + { + "key": "accountGroupId", + "value": "5356", + "enabled": true + }, + { + "key": "accountId", + "value": "4287", + "enabled": true + }, + { + "key": "authentication_outbound_oauth2_token_url_export_1053", + "value": "https:\/\/secure.snd.payu.com\/pl\/standard\/user\/oauth\/authorize", + "enabled": true + } + , + { + "key": "authentication_outbound_oauth2_client_id_export_1053", + "value": "PayU Romania_clientId", + "enabled": true + } + , + { + "key": "authentication_outbound_oauth2_client_secret_export_1053", + "value": "PayU Romania_clientSecret", + "enabled": true + } + , + { + "key": "authentication_outbound_oauth2_use_basic_auth_export_1053", + "value": "false", + "enabled": true + } + , + { + "key": "capturePattern", + "value": "PARTIAL_CAPTURE", + "enabled": true + } + , + { + "key": "enableOverCapture", + "value": "false", + "enabled": true + } + , + { + "key": "enableCaptureReAuth", + "value": "false", + "enabled": true + } + , + { + "key": "authorizationTimeoutDays", + "value": "7", + "enabled": true + } + , + { + "key": "apiDomain", + "value": "secure.snd.payu.com", + "enabled": true + } + , + { + "key": "posId", + "value": "511868", + "enabled": true + } + , + { + "key": "apiVersion", + "value": "v2_1", + "enabled": true + } + , + { + "key": "refundType", + "value": "REFUND_PAYMENT_STANDARD", + "enabled": true + } + + ], + "_postman_variable_scope": "environment", + "_postman_exported_at": "", + "_postman_exported_using": "Postman\/7.35.0" +} \ No newline at end of file diff --git a/postman/payu-europe/PAYMENT_PAGE/images/payU_captureMethod_1.png b/postman/payu-europe/PAYMENT_PAGE/images/payU_captureMethod_1.png new file mode 100644 index 0000000..02b68f7 Binary files /dev/null and b/postman/payu-europe/PAYMENT_PAGE/images/payU_captureMethod_1.png differ diff --git a/postman/payu-europe/PAYMENT_PAGE/images/payU_capturemethod_2.png b/postman/payu-europe/PAYMENT_PAGE/images/payU_capturemethod_2.png new file mode 100644 index 0000000..e084835 Binary files /dev/null and b/postman/payu-europe/PAYMENT_PAGE/images/payU_capturemethod_2.png differ diff --git a/postman/payu-europe/PAYMENT_PAGE/images/payU_credentials.png b/postman/payu-europe/PAYMENT_PAGE/images/payU_credentials.png new file mode 100644 index 0000000..caf391f Binary files /dev/null and b/postman/payu-europe/PAYMENT_PAGE/images/payU_credentials.png differ diff --git a/postman/payu-europe/PAYMENT_PAGE/images/payU_merchant_Id.png b/postman/payu-europe/PAYMENT_PAGE/images/payU_merchant_Id.png new file mode 100644 index 0000000..fa7e22a Binary files /dev/null and b/postman/payu-europe/PAYMENT_PAGE/images/payU_merchant_Id.png differ diff --git a/postman/payu-europe/PAYMENT_PAGE/images/payu_immediateCapture.png b/postman/payu-europe/PAYMENT_PAGE/images/payu_immediateCapture.png new file mode 100644 index 0000000..4d19e35 Binary files /dev/null and b/postman/payu-europe/PAYMENT_PAGE/images/payu_immediateCapture.png differ diff --git a/postman/payu-europe/PAYMENT_PAGE/images/payu_posId.png b/postman/payu-europe/PAYMENT_PAGE/images/payu_posId.png new file mode 100644 index 0000000..14d72fc Binary files /dev/null and b/postman/payu-europe/PAYMENT_PAGE/images/payu_posId.png differ diff --git a/postman/payu-europe/PAYMENT_PAGE/mapping_configuration.json b/postman/payu-europe/PAYMENT_PAGE/mapping_configuration.json new file mode 100644 index 0000000..6f6b116 --- /dev/null +++ b/postman/payu-europe/PAYMENT_PAGE/mapping_configuration.json @@ -0,0 +1,685 @@ +{ + "info": { + "_postman_id": "4664d775-5187-4405-aad5-4315383f1bc4", + "name": "PayU Europe_Config_Collection", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" + }, + "item": [ + { + "name": "Variable", + "item": [ + { + "name": "Variable_apiDomain", + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":4833,\"sensitive\":false,\"value\":\"{{apiDomain}}\",\"key\":\"apiDomain\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/variables", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "variables" + + ] + } + }, + "response": [] + } + , + { + "name": "Variable_posId", + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":4834,\"sensitive\":false,\"value\":\"{{posId}}\",\"key\":\"posId\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/variables", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "variables" + + ] + } + }, + "response": [] + } + , + { + "name": "Variable_apiVersion", + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":4835,\"sensitive\":false,\"value\":\"{{apiVersion}}\",\"key\":\"apiVersion\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/variables", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "variables" + + ] + } + }, + "response": [] + } + , + { + "name": "Variable_refundType", + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":4889,\"sensitive\":false,\"value\":\"{{refundType}}\",\"key\":\"refundType\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/variables", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "variables" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Account", + "item": [ + { + "name": "Account Patch", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"enableCaptureReAuth\":\"{{enableCaptureReAuth}}\",\"enableOverCapture\":\"{{enableOverCapture}}\",\"capturePattern\":\"{{capturePattern}}\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "AccountGroup", + "item": [ + { + "name": "Account Group Patch", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"authorizationTimeoutDays\":{{authorizationTimeoutDays}}}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Authentications", + "item": [ + { + "name": "Ip_allowlist", + "event": [ + { + "listen": "test", + "script": { + "id": "160e2c9f-7ee0-45e1-ae82-c6197c4ff501", + "exec": [ + "tests[\"Status code is 201\"] = responseCode.code === 201; \npm.test(\"Location is present\", function () {\n pm.response.to.have.header(\"Location\");\n var location=pm.response.headers.get(\"Location\");\n pm.environment.set(\"authentication_inbound_ip_allowlist_1068\", location.substring(location.lastIndexOf(\"\/\")+1,location.length));\n});" + + ], + "type": "text/javascript" + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"method\":\"IP_ALLOWLIST\",\"name\":\"PayU IP allowlist_export\",\"ipAllowlist\":{\"ipAddress\":[],\"ipRange\":[{\"ipStart\":\"185.68.14.10\",\"ipEnd\":\"185.68.14.12\"},{\"ipStart\":\"185.68.14.26\",\"ipEnd\":\"185.68.14.28\"},{\"ipStart\":\"185.68.12.10\",\"ipEnd\":\"185.68.12.12\"},{\"ipStart\":\"185.68.12.26\",\"ipEnd\":\"185.68.12.28\"}],\"ipCidr\":[]},\"id\":1068}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/authentications", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "authentications" + + ] + } + }, + "response": [] + } + , + { + "name": "Oauth2", + "event": [ + { + "listen": "test", + "script": { + "id": "f5a6f78e-b01c-4fb9-b72e-eaf31418ca80", + "exec": [ + "tests[\"Status code is 201\"] = responseCode.code === 201; \npm.test(\"Location is present\", function () {\n pm.response.to.have.header(\"Location\");\n var location=pm.response.headers.get(\"Location\");\n pm.environment.set(\"authentication_outbound_oauth2_1053\", location.substring(location.lastIndexOf(\"\/\")+1,location.length));\n});" + + ], + "type": "text/javascript" + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"method\":\"OAUTH2\",\"name\":\"PayU Romania_export\",\"id\":1053,\"oauth2\":{\"audience\":null,\"tokenUrl\":\"{{authentication_outbound_oauth2_token_url_export_1053}}\",\"clientId\":\"{{authentication_outbound_oauth2_client_id_export_1053}}\",\"useBasicAuth\":\"{{authentication_outbound_oauth2_use_basic_auth_export_1053}}\",\"scope\":null,\"clientSecret\":\"{{authentication_outbound_oauth2_client_secret_export_1053}}\"}}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/authentications", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "authentications" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Notification", + "item": [ + { + "name": "Notification", + "request": { + "method": "PUT", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":7786,\"requestType\":\"NOTIFICATION\",\"enabled\":null,\"configurationId\":null,\"googlePayGateway\":null,\"createdAt\":\"2026-05-20T15:10:57.871Z\",\"updatedAt\":\"2026-05-20T15:10:57.871Z\",\"inboundMapping\":{\"preprocessingMethodId\":null,\"authenticationIds\":[\"{{authentication_inbound_ip_allowlist_1068}}\"],\"contentType\":\"application\/json\",\"requestMapping\":{\"authorization\":{\"requestExample\":\"{\\\"order\\\":{\\\"orderId\\\":\\\"P6HTNT5Q5P260602GUEST000P01\\\",\\\"extOrderId\\\":\\\"000000W000000WG8\\\",\\\"orderCreateDate\\\":\\\"2026-06-02T03:19:11.777+02:00\\\",\\\"notifyUrl\\\":\\\"https:\/\/opf-iss-d0.opf.commerce.stage.context.cloud.sap\/opf\/gateway\/notifications\/5356\\\",\\\"customerIp\\\":\\\"182.149.137.165\\\",\\\"merchantPosId\\\":\\\"511868\\\",\\\"description\\\":\\\"Order 000000W000000WG8\\\",\\\"currencyCode\\\":\\\"RON\\\",\\\"merchantFee\\\":\\\"300\\\",\\\"totalAmount\\\":\\\"56299\\\",\\\"status\\\":\\\"WAITING_FOR_CONFIRMATION\\\",\\\"authorization\\\":{\\\"currencyCode\\\":\\\"RON\\\",\\\"status\\\":\\\"AUTHORIZED\\\",\\\"responseCode\\\":\\\"000\\\",\\\"responseCodeDescription\\\":\\\"000 - OK\\\",\\\"createDate\\\":\\\"2026-06-02T03:19:38.718+02:00\\\",\\\"resultDate\\\":\\\"2026-06-02T03:19:43.960+02:00\\\",\\\"validUntil\\\":\\\"2026-06-09T03:19:43.838+02:00\\\",\\\"retrievalReferenceNumber\\\":\\\"175379025756\\\",\\\"serviceProcessingType\\\":\\\"PSP\\\",\\\"card\\\":{\\\"maskedNumber\\\":\\\"515003******0186\\\",\\\"scheme\\\":\\\"MC\\\",\\\"issuerName\\\":\\\"BANK ZACHODNI WBK S.A.\\\",\\\"country\\\":\\\"PL\\\",\\\"classification\\\":\\\"CREDIT\\\",\\\"profile\\\":\\\"CONSUMER\\\"}},\\\"products\\\":[{\\\"name\\\":\\\"DSC-T90\\\",\\\"quantity\\\":\\\"1\\\",\\\"unitPrice\\\":\\\"52381\\\"}]},\\\"properties\\\":[{\\\"name\\\":\\\"PAYMENT_ID\\\",\\\"value\\\":\\\"5027986459\\\"}]}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"<#assign maskedNumber = notificationResponse.order.authorization.card.maskedNumber!\\\"\\\">\\n<#if maskedNumber?? && maskedNumber?length gte 4>${maskedNumber?substring(maskedNumber?length - 4)}<\/#if>\",\"to\":\"cardLast4\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":true},{\"from\":\"order.authorization.card.scheme\",\"to\":\"cardType\",\"map\":{\"VS\":\"VISA\",\"MC\":\"MASTERCARD\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.card.classification\",\"to\":\"paymentMethod\",\"map\":{\"CREDIT\":\"CREDIT_CARD\",\"DEBIT\":\"CREDIT_CARD\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.status\",\"to\":\"requestType\",\"map\":{\"WAITING_FOR_CONFIRMATION\":\"AUTHORIZATION\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.status\",\"to\":\"transactionStatus\",\"map\":{\"WAITING_FOR_CONFIRMATION\":\"ACCEPTED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"['properties.#object']\",\"to\":null,\"map\":null,\"arrayPath\":\"\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[*].name\",\"to\":null,\"map\":null,\"arrayPath\":\"properties\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[*].value\",\"to\":null,\"map\":null,\"arrayPath\":\"properties\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.customerIp\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.merchantFee\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.description\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.['products.#object']\",\"to\":null,\"map\":null,\"arrayPath\":\"order.\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].unitPrice\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].quantity\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].name\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.resultDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.validUntil\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.serviceProcessingType\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.retrievalReferenceNumber\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.responseCodeDescription\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.card.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.card.country\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.card.maskedNumber\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.card.issuerName\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.card.profile\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.status\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.responseCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.authorization.createDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.totalAmount\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.orderCreateDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.notifyUrl\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.merchantPosId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]}},\"authorizationReversal\":{\"requestExample\":\"{\\\"order\\\":{\\\"orderId\\\":\\\"NQWNST95MS260526GUEST000P01\\\",\\\"extOrderId\\\":\\\"000000W000000U88\\\",\\\"orderCreateDate\\\":\\\"2026-05-26T17:03:15.069+02:00\\\",\\\"notifyUrl\\\":\\\"https:\/\/opf-iss-d0.opf.commerce.stage.context.cloud.sap\/opf\/gateway\/notifications\/5356\\\",\\\"customerIp\\\":\\\"103.109.147.31\\\",\\\"merchantPosId\\\":\\\"511868\\\",\\\"description\\\":\\\"Order 000000W000000U88\\\",\\\"currencyCode\\\":\\\"RON\\\",\\\"totalAmount\\\":\\\"2299\\\",\\\"status\\\":\\\"CANCELED\\\",\\\"products\\\":[{\\\"name\\\":\\\"miniDV Head Cleaner\\\",\\\"quantity\\\":\\\"1\\\",\\\"unitPrice\\\":\\\"1048\\\"}]},\\\"properties\\\":[{\\\"name\\\":\\\"PAYMENT_ID\\\",\\\"value\\\":\\\"5027890478\\\"}]}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"order.orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.status\",\"to\":\"requestType\",\"map\":{\"CANCELED\":\"AUTHORIZATION_REVERSAL\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.status\",\"to\":\"transactionStatus\",\"map\":{\"CANCELED\":\"ACCEPTED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"['properties.#object']\",\"to\":null,\"map\":null,\"arrayPath\":\"\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[*].name\",\"to\":null,\"map\":null,\"arrayPath\":\"properties\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[*].value\",\"to\":null,\"map\":null,\"arrayPath\":\"properties\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.totalAmount\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.orderCreateDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.customerIp\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.notifyUrl\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.description\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.merchantPosId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.['products.#object']\",\"to\":null,\"map\":null,\"arrayPath\":\"order.\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].unitPrice\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].quantity\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].name\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]}},\"settlement\":{\"requestExample\":\"{\\\"order\\\":{\\\"shippingMethod\\\":{\\\"country\\\":\\\"US\\\"},\\\"orderId\\\":\\\"K2XJ68MX34260526GUEST000P01\\\",\\\"extOrderId\\\":\\\"000000W000000U8A\\\",\\\"orderCreateDate\\\":\\\"2026-05-26T17:12:50.556+02:00\\\",\\\"notifyUrl\\\":\\\"https:\/\/opf-iss-d0.opf.commerce.stage.context.cloud.sap\/opf\/gateway\/notifications\/5356\\\",\\\"customerIp\\\":\\\"103.109.147.31\\\",\\\"merchantPosId\\\":\\\"511868\\\",\\\"description\\\":\\\"Order 000000W000000U8A\\\",\\\"currencyCode\\\":\\\"RON\\\",\\\"totalAmount\\\":\\\"2299\\\",\\\"buyer\\\":{\\\"customerId\\\":\\\"guest\\\",\\\"email\\\":\\\"zeyunyan32@gmail.com\\\",\\\"phone\\\":\\\"02012345678\\\",\\\"firstName\\\":\\\"zeyun\\\",\\\"lastName\\\":\\\"yan\\\",\\\"language\\\":\\\"en\\\",\\\"extCustomerId\\\":\\\"f8c6ae77-03f3-4b5b-9f0f-531e672d96b0\\\",\\\"delivery\\\":{\\\"recipientName\\\":\\\"zeyun yan\\\",\\\"recipientEmail\\\":\\\"zeyunyan32@gmail.com\\\",\\\"recipientPhone\\\":\\\"02012345678\\\",\\\"street\\\":\\\"Address Line1 - Billing Address\\\",\\\"postalCode\\\":\\\"94105\\\",\\\"city\\\":\\\"New York\\\",\\\"state\\\":\\\"CA\\\",\\\"countryCode\\\":\\\"US\\\"}},\\\"payMethod\\\":{\\\"type\\\":\\\"CARD_TOKEN\\\"},\\\"status\\\":\\\"COMPLETED\\\",\\\"products\\\":[{\\\"name\\\":\\\"miniDV Head Cleaner\\\",\\\"quantity\\\":\\\"1\\\",\\\"unitPrice\\\":\\\"1048\\\"}]},\\\"localReceiptDateTime\\\":\\\"2026-05-26T17:18:01.519+02:00\\\",\\\"properties\\\":[{\\\"name\\\":\\\"PAYMENT_ID\\\",\\\"value\\\":\\\"5027890642\\\"}]}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"order.orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.status\",\"to\":\"requestType\",\"map\":{\"COMPLETED\":\"SETTLEMENT\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.status\",\"to\":\"transactionStatus\",\"map\":{\"COMPLETED\":\"ACCEPTED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"localReceiptDateTime\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"['properties.#object']\",\"to\":null,\"map\":null,\"arrayPath\":\"\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[*].name\",\"to\":null,\"map\":null,\"arrayPath\":\"properties\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[*].value\",\"to\":null,\"map\":null,\"arrayPath\":\"properties\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.customerIp\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.shippingMethod.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.shippingMethod.country\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.description\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.extCustomerId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.firstName\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.lastName\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.recipientPhone\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.city\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.street\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.countryCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.postalCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.recipientName\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.state\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.delivery.recipientEmail\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.phone\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.customerId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.language\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.buyer.email\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.['products.#object']\",\"to\":null,\"map\":null,\"arrayPath\":\"order.\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].unitPrice\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].quantity\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products[*].name\",\"to\":null,\"map\":null,\"arrayPath\":\"order.products\",\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.products\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.totalAmount\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.orderCreateDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.payMethod.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.payMethod.type\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.notifyUrl\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"order.merchantPosId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]}},\"refund\":{\"requestExample\":\"{\\n \\\"orderId\\\": \\\"2DVZMPMFPN140219GUEST000P01\\\",\\n \\\"extOrderId\\\": \\\"Order id from your system\\\",\\n \\\"refund\\\": {\\n \\\"refundId\\\": \\\"912128\\\",\\n \\\"extRefundId\\\": \\\"123456\\\",\\n \\\"amount\\\": \\\"15516\\\",\\n \\\"currencyCode\\\": \\\"PLN\\\",\\n \\\"status\\\": \\\"FINALIZED\\\",\\n \\\"statusDateTime\\\": \\\"2014-08-20T19:43:31.418+02:00\\\",\\n \\\"reason\\\": \\\"refund\\\",\\n \\\"reasonDescription\\\": \\\"client request\\\",\\n \\\"refundDate\\\": \\\"2014-08-20T19:43:30.150+02:00\\\"\\n }\\n}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.status\",\"to\":\"requestType\",\"map\":{\"FINALIZED\":\"REFUND\",\"CANCELED\":\"REFUND\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.status\",\"to\":\"transactionStatus\",\"map\":{\"FINALIZED\":\"ACCEPTED\",\"CANCELED\":\"REJECTED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.reason\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.amount\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.reasonDescription\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.extRefundId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.statusDateTime\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.refundDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.refundId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]}}},\"responseMapping\":{\"content\":\"OK\"}}}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/notification", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "notification" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Authorization", + "item": [ + { + "name": "Authorization", + "request": { + "method": "PUT", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":7787,\"pattern\":\"FULL_PAGE\",\"requestType\":\"AUTHORIZATION\",\"destination\":{\"url\":\"${input.redirectUrl}\",\"method\":\"GET\",\"contentType\":\"application\/x-www-form-urlencoded\",\"body\":null,\"authenticationIds\":[],\"form\":[]},\"enabled\":null,\"configurationId\":null,\"googlePayGateway\":null,\"createdAt\":\"2026-05-20T15:18:34.147Z\",\"updatedAt\":\"2026-05-20T15:18:34.147Z\",\"remoteApiOutboundMappings\":[{\"url\":\"https:\/\/${vars.apiDomain}\/api\/${vars.apiVersion}\/orders\",\"authenticationIds\":[\"{{authentication_outbound_oauth2_1053}}\"],\"method\":\"POST\",\"requestContentType\":\"application\/json\",\"requestExample\":\"{\\n \\\"customerIp\\\": \\\"127.0.0.1\\\",\\n \\\"merchantPosId\\\": \\\"511868\\\",\\n \\\"description\\\": \\\"RTV market\\\",\\n \\\"currencyCode\\\": \\\"RON\\\",\\n \\\"totalAmount\\\": \\\"21000\\\",\\n \\\"notifyUrl\\\" : \\\"https:\/\/example.com\\\",\\n \\\"continueUrl\\\" : \\\"https:\/\/example.com\\\",\\n \\\"extOrderId\\\" : \\\"ABC123\\\",\\n \\\"buyer\\\": {\\n\\\"extCustomerId\\\": \\\"string\\\",\\n\\\"email\\\": \\\"email@email.com\\\",\\n\\\"phone\\\": \\\"+48 225108001\\\",\\n\\\"firstName\\\": \\\"John\\\",\\n\\\"lastName\\\": \\\"Doe\\\",\\n\\\"language\\\": \\\"pl\\\",\\n\\\"delivery\\\": { \\\"street\\\": \\\"string\\\",\\n \\\"postalCode\\\": \\\"string\\\",\\n \\\"city\\\": \\\"string\\\",\\n \\\"state\\\": \\\"30\\\",\\n \\\"countryCode\\\": \\\"string\\\",\\n \\\"recipientName\\\": \\\"string\\\",\\n \\\"recipientEmail\\\": \\\"string\\\",\\n \\\"recipientPhone\\\": \\\"string\\\"}\\n},\\n \\\"products\\\": [\\n {\\n \\\"name\\\": \\\"Wireless Mouse for Laptop\\\",\\n \\\"unitPrice\\\": \\\"21000\\\",\\n \\\"quantity\\\": \\\"1\\\"\\n }\\n ],\\n \\\"browser\\\": {\\n \\\"acceptHeaders\\\": \\\"120 - low risk score calculated in Merchants antifraud tool\\\",\\n \\\"requestIP\\\": \\\"127.0.0.1\\\",\\n \\\"screenWidth\\\": 1920,\\n \\\"javaEnabled\\\": false,\\n \\\"timezoneOffset\\\": 1,\\n \\\"screenHeight\\\": 1280,\\n \\\"userAgent\\\": \\\"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/100.0.4896.127 Safari\/537.36\\\",\\n \\\"colorDepth\\\": 32,\\n \\\"language\\\": \\\"pl_PL\\\"\\n },\\n \\\"settings\\\":{\\n \\\"syncProcessing\\\":true\\n }\\n \\n}\",\"responseExample\":\"{\\n \\\"status\\\": {\\n \\\"statusCode\\\": \\\"SUCCESS\\\"\\n },\\n \\\"redirectUri\\\": \\\"{payment_summary_redirection_url}\\\",\\n \\\"orderId\\\": \\\"WZHF5FFDRJ140731GUEST000P01\\\",\\n \\\"extOrderId\\\": \\\"{YOUR_EXT_ORDER_ID}\\\"\\n}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"$.totalAmount\",\"to\":\"${input.amountInExponent}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.settings.syncProcessing\",\"to\":\"true\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":true,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.extOrderId\",\"to\":\"${input.orderId}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.customerIp\",\"to\":\"${input.browserInfo.ipAddress}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.continueUrl\",\"to\":\"${input.resultURL}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.acceptHeaders\",\"to\":\"${input.browserInfo.acceptHeader}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.screenWidth\",\"to\":\"${input.browserInfo.screenWidth}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.javaEnabled\",\"to\":\"${input.browserInfo.javaEnabled?string}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.timezoneOffset\",\"to\":\"${input.browserInfo.timeZoneOffset}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.screenHeight\",\"to\":\"${input.browserInfo.screenHeight}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.requestIP\",\"to\":\"${input.browserInfo.ipAddress}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.userAgent\",\"to\":\"${input.browserInfo.userAgent}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.language\",\"to\":\"ro\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":true,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.browser.colorDepth\",\"to\":\"${input.browserInfo.colorDepth}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.description\",\"to\":\"Order ${input.orderId}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":true},{\"from\":\"$.notifyUrl\",\"to\":\"${input.notificationURL}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.currencyCode\",\"to\":\"RON\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":true,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.merchantPosId\",\"to\":\"${vars.posId}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.extCustomerId\",\"to\":\"${input.customerId}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.firstName\",\"to\":\"${input.billingAddress.firstName}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.lastName\",\"to\":\"${input.billingAddress.lastName}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.recipientPhone\",\"to\":\"${input.shippingAddress.phoneNumber}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.city\",\"to\":\"${input.shippingAddress.city}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.street\",\"to\":\"${input.shippingAddress.addressLine1}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.countryCode\",\"to\":\"${input.shippingAddress.country}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.postalCode\",\"to\":\"${input.shippingAddress.postalCode}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.recipientName\",\"to\":\"${input.shippingAddress.firstName} ${input.shippingAddress.lastName}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":true},{\"from\":\"$.buyer.delivery.state\",\"to\":\"${input.shippingAddress.state}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.delivery.recipientEmail\",\"to\":\"${input.emailAddress}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.phone\",\"to\":\"${input.billingAddress.phoneNumber}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.language\",\"to\":\"${input.languageCode}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.buyer.email\",\"to\":\"${input.emailAddress}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.products[0].unitPrice\",\"to\":\"${input.lineItems[*].unitPriceInExponent}\",\"map\":null,\"arrayPath\":\"$.products\",\"arrayMapping\":true,\"lineItemGroup\":0,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.products[0].quantity\",\"to\":\"${input.lineItems[*].quantity}\",\"map\":null,\"arrayPath\":\"$.products\",\"arrayMapping\":true,\"lineItemGroup\":0,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.products[0].name\",\"to\":\"${input.lineItems[*].productName}\",\"map\":null,\"arrayPath\":\"$.products\",\"arrayMapping\":true,\"lineItemGroup\":0,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false}]},\"responseHeaders\":null,\"responseMappingFields\":{\"mappings\":[{\"from\":\"extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"redirectUri\",\"to\":\"redirectUrl\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]},\"responseContentType\":\"application\/json\",\"headers\":null,\"formArrayIndicator\":null}],\"verify\":{\"localVerifyMapping\":null,\"localVerifyAuthenticationId\":null,\"remoteVerifyMappings\":[{\"url\":\"https:\/\/${vars.apiDomain}\/api\/${vars.apiVersion}\/orders\/${input.pspReference}\",\"authenticationIds\":[\"{{authentication_outbound_oauth2_1053}}\"],\"method\":\"GET\",\"requestContentType\":\"application\/json\",\"requestExample\":null,\"responseExample\":\"{\\\"status\\\":{\\\"statusCode\\\":\\\"SUCCESS\\\",\\\"statusDesc\\\":\\\"Request processing successful\\\"},\\\"orders\\\":[{\\\"orderId\\\":\\\"P6HTNT5Q5P260602GUEST000P01\\\",\\\"extOrderId\\\":\\\"000000W000000WG8\\\",\\\"orderCreateDate\\\":\\\"2026-06-02T03:19:11.777+02:00\\\",\\\"notifyUrl\\\":\\\"https:\/\/opf-iss-d0.opf.commerce.stage.context.cloud.sap\/opf\/gateway\/notifications\/5356\\\",\\\"customerIp\\\":\\\"182.149.137.165\\\",\\\"merchantPosId\\\":\\\"511868\\\",\\\"description\\\":\\\"Order 000000W000000WG8\\\",\\\"currencyCode\\\":\\\"RON\\\",\\\"merchantFee\\\":\\\"300\\\",\\\"totalAmount\\\":\\\"56299\\\",\\\"status\\\":\\\"WAITING_FOR_CONFIRMATION\\\",\\\"authorization\\\":{\\\"currencyCode\\\":\\\"RON\\\",\\\"status\\\":\\\"AUTHORIZED\\\",\\\"responseCode\\\":\\\"000\\\",\\\"responseCodeDescription\\\":\\\"000 - OK\\\",\\\"createDate\\\":\\\"2026-06-02T03:19:38.718+02:00\\\",\\\"resultDate\\\":\\\"2026-06-02T03:19:43.960+02:00\\\",\\\"validUntil\\\":\\\"2026-06-09T03:19:43.838+02:00\\\",\\\"retrievalReferenceNumber\\\":\\\"175379025756\\\",\\\"serviceProcessingType\\\":\\\"PSP\\\",\\\"card\\\":{\\\"maskedNumber\\\":\\\"515003******0186\\\",\\\"scheme\\\":\\\"MC\\\",\\\"issuerName\\\":\\\"BANK ZACHODNI WBK S.A.\\\",\\\"country\\\":\\\"PL\\\",\\\"classification\\\":\\\"CREDIT\\\",\\\"profile\\\":\\\"CONSUMER\\\"}},\\\"products\\\":[{\\\"name\\\":\\\"DSC-T90\\\",\\\"quantity\\\":\\\"1\\\",\\\"unitPrice\\\":\\\"52381\\\"}]}],\\\"properties\\\":[{\\\"name\\\":\\\"PAYMENT_ID\\\",\\\"value\\\":\\\"5027986459\\\"}]}\",\"requestMappingFields\":{\"mappings\":[]},\"responseHeaders\":null,\"responseMappingFields\":{\"mappings\":[{\"from\":\"orders[0].orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].status\",\"to\":\"result\",\"map\":{\"WAITING_FOR_CONFIRMATION\":\"AUTHORIZED\",\"CANCELED\":\"CANCELLED\",\"COMPLETED\":\"AUTHORIZED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"['orders.#object']\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].customerIp\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].merchantFee\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].description\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].['products.#object']\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].products[0].unitPrice\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].products[0].quantity\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].products[0].name\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].products\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.resultDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.validUntil\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.serviceProcessingType\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.retrievalReferenceNumber\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.responseCodeDescription\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.country\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.maskedNumber\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.scheme\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.issuerName\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.profile\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.card.classification\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.status\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.responseCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].authorization.createDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].totalAmount\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].orderCreateDate\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].notifyUrl\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders[0].merchantPosId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"orders\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"['properties.#object']\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[0].name\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties[0].value\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"properties\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusDesc\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]},\"responseContentType\":\"application\/json\",\"headers\":null,\"formArrayIndicator\":null}]},\"redirectFilteringParamDto\":{\"redirectParamFilterPolicy\":null,\"filteringParams\":[]}}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/authorization", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "authorization" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Settlement", + "item": [ + { + "name": "Settlement", + "request": { + "method": "PUT", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":7967,\"requestType\":\"SETTLEMENT\",\"outboundMappings\":[{\"url\":\"https:\/\/${vars.apiDomain}\/api\/${vars.apiVersion}\/orders\/${input.pspReference}\/captures\",\"authenticationIds\":[\"{{authentication_outbound_oauth2_1053}}\"],\"method\":\"POST\",\"requestContentType\":\"application\/json\",\"requestExample\":\"{\\n \\\"amount\\\": 900,\\n \\\"currencyCode\\\": \\\"EUR\\\"\\n}\",\"responseExample\":\"{\\\"orderId\\\":\\\"5F2RBW7L2R260527GUEST000P01\\\",\\\"status\\\":{\\\"statusCode\\\":\\\"SUCCESS\\\",\\\"statusDesc\\\":\\\"Order captured successfully\\\"}}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"$.amount\",\"to\":\"${input.amountInExponent}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.currencyCode\",\"to\":\"RON\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":true,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false}]},\"responseHeaders\":null,\"responseMappingFields\":{\"mappings\":[{\"from\":\"orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"httpStatusCode\",\"to\":\"transactionStatus\",\"map\":{\"400\":\"REJECTED\",\"401\":\"REJECTED\",\"500\":\"REJECTED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"STATUS\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusDesc\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]},\"responseContentType\":\"application\/json\",\"headers\":null,\"formArrayIndicator\":null}],\"enabled\":null,\"configurationId\":null,\"googlePayGateway\":null,\"createdAt\":\"2026-05-26T08:38:39.432Z\",\"updatedAt\":\"2026-05-26T08:38:39.432Z\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/settlement", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "settlement" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Refund", + "item": [ + { + "name": "Refund", + "request": { + "method": "PUT", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":7968,\"requestType\":\"REFUND\",\"outboundMappings\":[{\"url\":\"https:\/\/${vars.apiDomain}\/api\/${vars.apiVersion}\/orders\/${input.authPspReference}\/refunds\",\"authenticationIds\":[\"{{authentication_outbound_oauth2_1053}}\"],\"method\":\"POST\",\"requestContentType\":\"application\/json\",\"requestExample\":\"{\\n \\\"refund\\\": {\\n \\\"description\\\": \\\"Refund description.\\\",\\n \\\"amount\\\": 1000,\\n \\\"extRefundId\\\": \\\"3e5cac39-7e38-4139-8fd6-30adc06a61bd\\\",\\n \\\"currencyCode\\\": \\\"PLN\\\",\\n \\\"type\\\": \\\"REFUND_PAYMENT_STANDARD\\\"\\n }\\n}\",\"responseExample\":\"{\\n \\\"orderId\\\": \\\"WZGF5FFDRJ140731GUEST000P01\\\",\\n \\\"refund\\\": {\\n \\\"refundId\\\": \\\"5000000142\\\",\\n \\\"description\\\": \\\"Test refund\\\",\\n \\\"amount\\\": \\\"10000\\\",\\n \\\"extRefundId\\\": \\\"3e5cac39-7e38-4139-8fd6-30adc06a61bd\\\",\\n \\\"currencyCode\\\": \\\"PLN\\\",\\n \\\"bankDescription\\\": \\\"Bank transfer refund\\\",\\n \\\"creationDateTime\\\": \\\"2020-07-02T09:19:03.896+02:00\\\",\\n \\\"status\\\": \\\"PENDING\\\",\\n \\\"statusDatetime\\\": \\\"2020-07-02T09:19:04.013+02:00\\\"\\n },\\n \\\"status\\\": {\\n \\\"statusCode\\\": \\\"SUCCESS\\\",\\n \\\"statusDesc\\\": \\\"Refund queued for processing\\\"\\n }\\n}\",\"requestMappingFields\":{\"mappings\":[{\"from\":\"$.refund.amount\",\"to\":\"${input.amountInExponent}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.refund.extRefundId\",\"to\":\"${input.id}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.refund.description\",\"to\":\"Order ${input.orderId}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":true},{\"from\":\"$.refund.type\",\"to\":\"${vars.refundType}\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"$.refund.currencyCode\",\"to\":\"RON\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":null,\"fixed\":true,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false}]},\"responseHeaders\":null,\"responseMappingFields\":{\"mappings\":[{\"from\":\"orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"httpStatusCode\",\"to\":\"transactionStatus\",\"map\":{\"400\":\"REJECTED\",\"401\":\"REJECTED\"},\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"STATUS\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.amount\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.bankDescription\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.extRefundId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.description\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.currencyCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.refundId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.statusDatetime\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.creationDateTime\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"refund.status\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusDesc\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]},\"responseContentType\":\"application\/json\",\"headers\":null,\"formArrayIndicator\":null}],\"enabled\":null,\"configurationId\":null,\"googlePayGateway\":null,\"createdAt\":\"2026-05-26T08:45:41.534Z\",\"updatedAt\":\"2026-05-26T08:45:41.534Z\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/refund", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "refund" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + , + { + "name": "Authorization_reversal", + "item": [ + { + "name": "Authorization_reversal", + "request": { + "method": "PUT", + "header": [ + { + "key": "Authorization", + "value": "{{token}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"id\":7969,\"requestType\":\"AUTHORIZATION_REVERSAL\",\"outboundMappings\":[{\"url\":\"https:\/\/${vars.apiDomain}\/api\/${vars.apiVersion}\/orders\/${input.authorizationPspReference}\",\"authenticationIds\":[\"{{authentication_outbound_oauth2_1053}}\"],\"method\":\"DELETE\",\"requestContentType\":\"application\/json\",\"requestExample\":null,\"responseExample\":\"{\\n \\\"orderId\\\": \\\"WZHF5FFDRJ140731GUEST000P01\\\",\\n \\\"extOrderId\\\": \\\"3e5cac39-7e38-4139-8fd6-30adc06a61bd\\\",\\n \\\"status\\\": {\\n \\\"statusCode\\\": \\\"SUCCESS\\\"\\n }\\n}\",\"requestMappingFields\":{\"mappings\":[]},\"responseHeaders\":null,\"responseMappingFields\":{\"mappings\":[{\"from\":\"orderId\",\"to\":\"pspReference\",\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":false,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"extOrderId\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"status.statusCode\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":false,\"isArrayElement\":false,\"isScript\":false},{\"from\":\"#object\",\"to\":null,\"map\":null,\"arrayPath\":null,\"arrayMapping\":false,\"lineItemGroup\":null,\"mappingFieldType\":\"BODY\",\"fixed\":true,\"isCustom\":false,\"persistCustomField\":false,\"isSensitive\":false,\"isObject\":true,\"isArrayElement\":false,\"isScript\":false}]},\"responseContentType\":\"application\/json\",\"headers\":null,\"formArrayIndicator\":null}],\"enabled\":null,\"configurationId\":null,\"googlePayGateway\":null,\"createdAt\":\"2026-05-26T08:55:01.574Z\",\"updatedAt\":\"2026-05-26T08:55:01.574Z\"}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{rootUrl}}/{{service}}\/merchant\/accountgroups\/{{accountGroupId}}\/accounts\/{{accountId}}\/authorization_reversal", + "host": [ + "{{rootUrl}}" + ], + "path": [ + "{{service}}" + , + "merchant" + , + "accountgroups" + , + "{{accountGroupId}}" + , + "accounts" + , + "{{accountId}}" + , + "authorization_reversal" + + ] + } + }, + "response": [] + } + + ], + "protocolProfileBehavior": {} + } + + ], + "event": [ + { + "listen": "prerequest", + "script": { + "type": "text/javascript", + "exec": [ + "let url = pm.request.url.toString();\nif(pm.environment.get(\"service\")==null || pm.environment.get(\"service\")===\"\"){\n let updateUrl = url.replace(\"\/{{service}}\",\"\")\n pm.request.url = updateUrl;\n}" + ] + } + } + ] + , + "protocolProfileBehavior": {} +} \ No newline at end of file