Skip to content

Commit 87b7c56

Browse files
authored
Merge pull request #12 from ankeshanand/master
Update VDP sandbox endpoint for Flex Tokenization API.
2 parents b6a4cb4 + fc95939 commit 87b7c56

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

java/spring-boot/src/main/java/com/cybersource/flex/vdp/VDPEnpoints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package com.cybersource.flex.vdp;
66

77
public enum VDPEnpoints {
8-
Sandbox("https://sandbox.api.visa.com/cybersource/payments/flex/v1/keys", "https://sandbox.api.visa.com/cybersource/payments/flex/v1/tokens"),
8+
Sandbox("https://sandbox.api.visa.com/cybersource/payments/flex/v1/keys", "https://sandbox.webapi.visa.com/cybersource/payments/flex/v1/tokens"),
99
Production("https://api.visa.com/cybersource/payments/flex/v1/keys", "https://api.visa.com/cybersource/payments/flex/v1/tokens");
1010

1111
private final String keysEnpoint;

java/spring-boot/src/main/resources/public/flex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
var _endpoints = {
1111
keys: "https://sandbox.api.visa.com/cybersource/payments/flex/v1/keys",
1212
// note that you mustn't pass API Key with a call to tokens endpoint.
13-
tokens: "https://sandbox.api.visa.com/cybersource/payments/flex/v1/tokens"
13+
tokens: "https://sandbox.webapi.visa.com/cybersource/payments/flex/v1/tokens"
1414
}
1515
/* PRIVATE FUNCTIONS */
1616
var _isFunction = function(functionToCheck) {

0 commit comments

Comments
 (0)