From 19a6a66457d3538f65a37a2d5be185518feaafe7 Mon Sep 17 00:00:00 2001 From: Bram Verburg Date: Thu, 24 Nov 2022 16:42:46 +0100 Subject: [PATCH] PAY-1290 Update Merchant API URL --- bluecode/payments/Bluecode.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bluecode/payments/Bluecode.php b/bluecode/payments/Bluecode.php index 2c2f4e2..cc13575 100644 --- a/bluecode/payments/Bluecode.php +++ b/bluecode/payments/Bluecode.php @@ -42,12 +42,12 @@ class Bluecode extends WC_Payment_Gateway /** @var string[] API URLs for sandbox and live */ protected $aURLs = array( - "test" => "https://merchant-api.bluecode.biz/v4/%s", - "prod" => "https://merchant-api.bluecode.com/v4/%s" + "test" => "https://merchant-api.spt-payments.biz/v4/%s", + "prod" => "https://merchant-api.spt-payments.com/v4/%s" ); protected $aTokenURLs = array( - "test" => "https://merchant-api.bluecode.biz/oauth2/%s", - "prod" => "https://merchant-api.bluecode.com/oauth2/%s" + "test" => "https://merchant-api.spt-payments.biz/oauth2/%s", + "prod" => "https://merchant-api.spt-payments.com/oauth2/%s" ); protected $aPortalURLs = array( "test" => "https://merchant-portal.bluecode.biz/%s",