You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**paymentMethodTypes**| Enabled Payment Methods. 'Credit & Debit Card' should be enabled |
44
45
|**paymentOptions**| Payment options enabled for payment using Payment Widget. 'Credit & Debit Card' should be enabled |
45
-
|**payerAuthEnabled**| Enables payer authentication (3D Secure) for credit cards |||
46
+
|**payerAuthEnabled**| Enables payer authentication (3D Secure) for credit cards |
47
+
|**scaEnabled**| If enabled card holder will be 3DS Challenged when saving a card |
46
48
|**saleEnabled**| Indicates if authorizing and taking payment will be done at the same time |
47
49
|**isCVVRequiredForSavedCards**| Should be disabled as CVV is not required in backend |
48
50
|**isCVVRequiredForScheduledOrders**| Should be disabled as CVV is not required in backend |
49
51
50
52
Default values:
51
53
52
54
-`payerAuthEnabled`: true. Payer authentication is enabled by default
55
+
-`scaEnabled` : false
53
56
-`isCVVRequiredForSavedCards`: false
54
57
-`isCVVRequiredForScheduledOrders`: false
55
58
-`saleEnabled` - by default SALE is disabled for Card payments. Can be enabled in OCC Admin
@@ -135,7 +138,6 @@ plugins
135
138
| | | ├── meta.js
136
139
| | | └── styles.css
137
140
| | ├── isv-payment-utility
138
-
| | | ├── common.js
139
141
| | | ├── flex-microform.js
140
142
| | | ├── flex-microForm-api.js
141
143
| | | └── script-loader.js
@@ -145,7 +147,9 @@ plugins
145
147
| | ├── meta.js
146
148
| | └── styles.css
147
149
| ├── .eslintrc
150
+
| ├── constants.js
148
151
| ├── index.js
152
+
| ├── isv-common.js
149
153
| └── meta.js
150
154
├── endpoints
151
155
| ├── flex-microform-endpoint
@@ -261,10 +265,20 @@ The following UI component contains Payer Authentication integration logic `plug
261
265
262
266
#### Backend (SSE) integration details
263
267
264
-
-`server-extension/src/controllers/payerAuth.ts` Controller for generating a signed PayerAuth JWT
268
+
-`server-extension/src/controllers/payerAuth.ts` Controller for payer auth setup
265
269
-`server-extension/src/services/payments/converters/request/mappers/payerAuthEnrollMapper.ts` Including payer auth reference id into PSP card authorization request
266
270
-`server-extension/src/services/payments/converters/request/mappers/payerAuthValidationMapper.ts` Including payer auth validation token into PSP card authorization request
267
271
272
+
#### Strong Customer Authentication (SCA)
273
+
274
+
When `Payer Authentication` is enabled, if a transaction gets declined with the reason as Strong Customer Authentication required, then another request will be sent from Oracle Commerce Cloud automatically for the same order and the customer will be 3DS challenged.
275
+
276
+
In case merchants would like the cardholder to be 3DS Challenged when saving a card `scaEnabled` gateway setting can be updated to enable it for credit cards.
277
+
278
+
In case 'Strong Customer Authentication' is enabled for credit cards, '10000' response code is sent back in Webhook response so that OCC becomes aware of that.
279
+
280
+
*Note:* The `scaEnabled` setting is applicable only if `Payer Authentication` is enabled.
281
+
268
282
### Capturing funds during authorization (SALE)
269
283
270
284
In case merchants would like funds to be captured (settled) during card authorizations `saleEnabled` gateway setting can be updated to enable it for credit cards.
* Name of the profile selector rule that chooses the profile to use for the transaction. If no profile selector exists, the value is Default Active Profile.
* Reference ID that corresponds to the device fingerprinting data that was collected previously. Note Required for Hybrid integration.
4136
4137
*/
4137
4138
'referenceId'?: string;
4139
+
/**
4140
+
* The URL of the merchant’s return page. CyberSource adds this return URL to the step-up JWT and returns it in the response of the Payer Authentication enrollment call. The merchant's return URL page serves as a listening URL. Once the bank session completes, the merchant receives a POST to their URL. This response contains the completed bank session’s transactionId. The merchant’s return page should capture the transaction ID and send it in the Payer Authentication validation call.
4141
+
*/
4142
+
'returnUrl'?: string;
4138
4143
/**
4139
4144
* This field indicates the maximum amount of time for all 3DS 2.0 messages to be communicated between all components (in minutes). Possible Values: Greater than or equal to 05 (05 is the minimum timeout to set) Cardinal Default is set to 15 NOTE: This field is a required 3DS 2.0 field and Cardinal sends in a default of 15 if nothing is passed
0 commit comments