2019-08-28 03:13:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2019-09-11 01:31:55 +02:00
|
|
|
namespace App\Utils;
|
|
|
|
|
2019-09-11 02:37:53 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Illuminate\Support\Str;
|
2019-08-28 03:13:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Statics
|
|
|
|
*/
|
|
|
|
class Statics
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Date format types
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $date = [
|
|
|
|
['format' => 'd/M/Y', 'picker_format' => 'dd/M/yyyy', 'format_moment' => 'DD/MMM/YYYY', 'format_dart' => 'dd/MMM/yyyy'],
|
|
|
|
['format' => 'd-M-Y', 'picker_format' => 'dd-M-yyyy', 'format_moment' => 'DD-MMM-YYYY', 'format_dart' => 'dd-MMM-yyyy'],
|
|
|
|
['format' => 'd/F/Y', 'picker_format' => 'dd/MM/yyyy', 'format_moment' => 'DD/MMMM/YYYY', 'format_dart' => 'dd/MMMM/yyyy'],
|
|
|
|
['format' => 'd-F-Y', 'picker_format' => 'dd-MM-yyyy', 'format_moment' => 'DD-MMMM-YYYY', 'format_dart' => 'dd-MMMM-yyyy'],
|
|
|
|
['format' => 'M j, Y', 'picker_format' => 'M d, yyyy', 'format_moment' => 'MMM D, YYYY', 'format_dart' => 'MMM d, yyyy'],
|
|
|
|
['format' => 'F j, Y', 'picker_format' => 'MM d, yyyy', 'format_moment' => 'MMMM D, YYYY', 'format_dart' => 'MMMM d, yyyy'],
|
|
|
|
['format' => 'D M j, Y', 'picker_format' => 'D MM d, yyyy', 'format_moment' => 'ddd MMM Do, YYYY', 'format_dart' => 'EEE MMM d, yyyy'],
|
|
|
|
['format' => 'Y-m-d', 'picker_format' => 'yyyy-mm-dd', 'format_moment' => 'YYYY-MM-DD', 'format_dart' => 'yyyy-MM-dd'],
|
|
|
|
['format' => 'd-m-Y', 'picker_format' => 'dd-mm-yyyy', 'format_moment' => 'DD-MM-YYYY', 'format_dart' => 'dd-MM-yyyy'],
|
|
|
|
['format' => 'm/d/Y', 'picker_format' => 'mm/dd/yyyy', 'format_moment' => 'MM/DD/YYYY', 'format_dart' => 'MM/dd/yyyy'],
|
|
|
|
['format' => 'd.m.Y', 'picker_format' => 'dd.mm.yyyy', 'format_moment' => 'D.MM.YYYY', 'format_dart' => 'dd.MM.yyyy'],
|
|
|
|
['format' => 'j. M. Y', 'picker_format' => 'd. M. yyyy', 'format_moment' => 'DD. MMM. YYYY', 'format_dart' => 'd. MMM. yyyy'],
|
|
|
|
['format' => 'j. F Y', 'picker_format' => 'd. MM yyyy', 'format_moment' => 'DD. MMMM YYYY', 'format_dart' => 'd. MMMM yyyy'],
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Date Time Format types
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $date_time = [
|
|
|
|
['format' => 'd/M/Y g:i a', 'format_moment' => 'DD/MMM/YYYY h:mm:ss a', 'format_dart' => 'dd/MMM/yyyy h:mm a'],
|
|
|
|
['format' => 'd-M-Y g:i a', 'format_moment' => 'DD-MMM-YYYY h:mm:ss a', 'format_dart' => 'dd-MMM-yyyy h:mm a'],
|
|
|
|
['format' => 'd/F/Y g:i a', 'format_moment' => 'DD/MMMM/YYYY h:mm:ss a', 'format_dart' => 'dd/MMMM/yyyy h:mm a'],
|
|
|
|
['format' => 'd-F-Y g:i a', 'format_moment' => 'DD-MMMM-YYYY h:mm:ss a', 'format_dart' => 'dd-MMMM-yyyy h:mm a'],
|
|
|
|
['format' => 'M j, Y g:i a', 'format_moment' => 'MMM D, YYYY h:mm:ss a', 'format_dart' => 'MMM d, yyyy h:mm a'],
|
|
|
|
['format' => 'F j, Y g:i a', 'format_moment' => 'MMMM D, YYYY h:mm:ss a', 'format_dart' => 'MMMM d, yyyy h:mm a'],
|
|
|
|
['format' => 'D M jS, Y g:i a', 'format_moment' => 'ddd MMM Do, YYYY h:mm:ss a', 'format_dart' => 'EEE MMM d, yyyy h:mm a'],
|
|
|
|
['format' => 'Y-m-d g:i a', 'format_moment' => 'YYYY-MM-DD h:mm:ss a', 'format_dart' => 'yyyy-MM-dd h:mm a'],
|
|
|
|
['format' => 'd-m-Y g:i a', 'format_moment' => 'DD-MM-YYYY h:mm:ss a', 'format_dart' => 'dd-MM-yyyy h:mm a'],
|
|
|
|
['format' => 'm/d/Y g:i a', 'format_moment' => 'MM/DD/YYYY h:mm:ss a', 'format_dart' => 'MM/dd/yyyy h:mm a'],
|
|
|
|
['format' => 'd.m.Y g:i a', 'format_moment' => 'D.MM.YYYY h:mm:ss a', 'format_dart' => 'dd.MM.yyyy h:mm a'],
|
|
|
|
['format' => 'j. M. Y g:i a', 'format_moment' => 'DD. MMM. YYYY h:mm:ss a', 'format_dart' => 'd. MMM. yyyy h:mm a'],
|
|
|
|
['format' => 'j. F Y g:i a', 'format_moment' => 'DD. MMMM YYYY h:mm:ss a', 'format_dart' => 'd. MMMM yyyy h:mm a'],
|
|
|
|
];
|
|
|
|
|
|
|
|
|
2019-09-11 01:31:55 +02:00
|
|
|
/**
|
|
|
|
* Company statics
|
|
|
|
* @param string|boolean $locale The user locale
|
|
|
|
* @return array Array of statics
|
|
|
|
*/
|
|
|
|
public static function company($locale = false) :array
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
2019-09-11 04:01:49 +02:00
|
|
|
foreach (config('ninja.cached_tables') as $name => $class) {
|
2019-09-11 01:31:55 +02:00
|
|
|
$data[$name] = Cache::get($name);
|
|
|
|
}
|
|
|
|
|
2019-09-11 04:01:49 +02:00
|
|
|
// Log::error($data);
|
2019-09-11 02:37:53 +02:00
|
|
|
|
2019-09-11 01:31:55 +02:00
|
|
|
if ($locale) {
|
2019-09-11 02:37:53 +02:00
|
|
|
|
2019-09-11 01:31:55 +02:00
|
|
|
$data['industries'] = Cache::get('industries')->each(function ($industry) {
|
|
|
|
$industry->name = ctrans('texts.industry_'.$industry->name);
|
|
|
|
})->sortBy(function ($industry) {
|
|
|
|
return $industry->name;
|
|
|
|
})->values();
|
|
|
|
|
|
|
|
$data['countries'] = Cache::get('countries')->each(function ($country) {
|
|
|
|
$country->name = ctrans('texts.country_'.$country->name);
|
|
|
|
})->sortBy(function ($country) {
|
|
|
|
return $country->name;
|
|
|
|
})->values();
|
|
|
|
|
|
|
|
$data['payment_types'] = Cache::get('payment_types')->each(function ($pType) {
|
|
|
|
$pType->name = ctrans('texts.payment_type_'.$pType->name);
|
|
|
|
})->sortBy(function ($pType) {
|
|
|
|
return $pType->name;
|
|
|
|
})->values();
|
|
|
|
|
|
|
|
$data['languages'] = Cache::get('languages')->each(function ($lang) {
|
|
|
|
$lang->name = ctrans('texts.lang_'.$lang->name);
|
|
|
|
})->sortBy(function ($lang) {
|
|
|
|
return $lang->name;
|
|
|
|
})->values();
|
|
|
|
|
|
|
|
$data['currencies'] = Cache::get('currencies')->each(function ($currency) {
|
2019-09-11 02:37:53 +02:00
|
|
|
$currency->name = ctrans('texts.currency_' . Str::slug($currency->name, '_'));
|
2019-09-11 01:31:55 +02:00
|
|
|
})->sortBy(function ($currency) {
|
|
|
|
return $currency->name;
|
|
|
|
})->values();
|
2019-09-11 02:37:53 +02:00
|
|
|
|
2019-09-24 13:48:25 +02:00
|
|
|
$data['gateway_fields'] = json_decode(self::gatewayFields(), true);
|
2019-09-11 01:31:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2019-09-24 13:48:25 +02:00
|
|
|
|
|
|
|
private static function gatewayFields()
|
|
|
|
{
|
|
|
|
return '
|
|
|
|
{
|
|
|
|
"3b6621f970ab18887c4f6dca78d3f8bb": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Authorize.Net AIM",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"46c5c1fed2c43acf4f379bae9c8b9f76": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "CardSave",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"944c20175bbe6b9972c05bcfe294c2c7": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Eway Rapid",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"4e0ed0d34552e6cb433506d1ac03a418": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "FirstData Connect",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"513cdc81444c87c4b07258bc2858d3fa": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Migs ThreeParty",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"99c2a271b5088951334d1302e038c01a": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Migs TwoParty",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"1bd651fb213ca0c9d66ae3c336dc77e8": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Mollie",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"c3dec814e14cbd7d86abd92ce6789f8c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "MultiSafepay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"070dffc5ca94f4e66216e44028ebd52d": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Netaxept",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"334d419939c06bd99b4dfd8a49243f0f": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "NetBanx",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"d6814fc83f45d2935e7777071e629ef9": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PayFast",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"0d97c97d227f91c5d0cb86d01e4a52c9": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Payflow Pro",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"a66b7062f4c8212d2c428209a34aa6bf": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PaymentExpress PxPay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"7e6fc08b89467518a5953a4839f8baba": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PaymentExpress PxPost",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"38f2c48af60c7dd69e04248cbb24c36e": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PayPal Express",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"80af24a6a69f5c0bbec33e930ab40665": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PayPal Pro",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"0749cb92a6b36c88bd9ff8aabd2efcab": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Pin",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"4c8f4e5d0f353a122045eb9a60cc0f2d": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "SagePay Direct",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"8036a5aadb2bdaafb23502da8790b6a2": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "SecurePay DirectPost",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"d14dd26a37cecc30fdd65700bfb55b23": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Stripe",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"d14dd26a37cdcc30fdd65700bfb55b23": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "TargetPay Direct eBanking",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"ea3b328bd72d381387281c3bd83bd97c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "TargetPay Ideal",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"a0035fc0d87c4950fb82c73e2fcb825a": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "TargetPay Mr Cash",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"16dc1d3c8a865425421f64463faaf768": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "TwoCheckout",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"43e639234f660d581ddac725ba7bcd29": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "WorldPay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"2f71dc17b0158ac30a7ae0839799e888": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "moolah",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"733998ee4760b10f11fb48652571e02c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Alipay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"6312879223e49c5cf92e194646bdee8f": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Buckaroo",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"106ef7e7da9062b0df363903b455711c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Coinbase",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"e9a38f0896b5b82d196be3b7020c8664": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "DataCash",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"0da4e18ed44a5bd5c8ec354d0ab7b301": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Pacnet",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"d3979e62eb603fbdf1c78fe3a8ba7009": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Realex",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"557d98977e7ec02dfa53de4b69b335be": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Sisow",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"54dc60c869a7322d87efbec5c0c25805": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Skrill",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"e4a02f0a4b235eb5e9e294730703bb74": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "BitPay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"1b3c6f3ccfea4f5e7eadeae188cccd7f": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "AGMS",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"7cba6ce5c125f9cb47ea8443ae671b68": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Barclays",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "en_US",
|
|
|
|
"callback_method": "POST"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"b98cfa5f750e16cee3524b7b7e78fbf6": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Cardgate",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"3758e7f7c6f4cecf0f4f348b9a00f456": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Checkout.com",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"cbc7ef7c99d31ec05492fbcb37208263": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Creditcall",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"e186a98d3b079028a73390bdc11bdb82": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Cybersource",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"761040aca40f685d1ab55e2084b30670": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "ecoPayz",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"1b2cef0e8c800204a29f33953aaf3360": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Fasapay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"7ea2d40ecb1eb69ef8c3d03e5019028a": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Komoju",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"70ab90cd6c5c1ab13208b3cef51c0894": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Paysafecard",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"bbd736b3254b0aabed6ad7fda1298c88": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Paytrace",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"231cb401487b9f15babe04b1ac4f7a27": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Secure Trading",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"bad8699d581d9fa040e59c0bb721a76c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "SecPay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"8fdeed552015b3c7b44ed6c8ebd9e992": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "WePay",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": "",
|
|
|
|
"access_token": "",
|
|
|
|
"type": "goods",
|
|
|
|
"fee_payer": "payee"
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"f7ec488676d310683fb51802d076d713": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "Braintree",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": "",
|
|
|
|
"access_token": "",
|
|
|
|
"type": "goods",
|
|
|
|
"fee_payer": "payee",
|
|
|
|
"public_key": "",
|
|
|
|
"private_key": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"30334a52fb698046572c627ca10412e8": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "FirstData Payeezy",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": false,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": "",
|
|
|
|
"access_token": "",
|
|
|
|
"type": "goods",
|
|
|
|
"fee_payer": "payee",
|
|
|
|
"public_key": "",
|
|
|
|
"private_key": "",
|
|
|
|
"gateway_id": "",
|
|
|
|
"key_id": "",
|
|
|
|
"hmac": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"b9886f9257f0c6ee7c302f1c74475f6c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "GoCardless",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": true,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": "",
|
|
|
|
"access_token": "",
|
|
|
|
"type": "goods",
|
|
|
|
"fee_payer": "payee",
|
|
|
|
"public_key": "",
|
|
|
|
"private_key": "",
|
|
|
|
"gateway_id": "",
|
|
|
|
"key_id": "",
|
|
|
|
"hmac": "",
|
|
|
|
"webhook_secret": ""
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"ef498756b54db63c143af0ec433da803": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PagSeguro",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": true,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": "",
|
|
|
|
"access_token": "",
|
|
|
|
"type": "goods",
|
|
|
|
"fee_payer": "payee",
|
|
|
|
"public_key": "",
|
|
|
|
"private_key": "",
|
|
|
|
"gateway_id": "",
|
|
|
|
"key_id": "",
|
|
|
|
"hmac": "",
|
|
|
|
"webhook_secret": "",
|
|
|
|
"token": "",
|
|
|
|
"sandbox": false
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
},
|
|
|
|
"ca52f618a39367a4c944098ebf977e1c": {
|
2019-09-24 14:03:08 +02:00
|
|
|
"name": "PAYMILL",
|
|
|
|
"fields": {
|
|
|
|
"api_login_id": "",
|
|
|
|
"transaction_key": "",
|
|
|
|
"test_mode": true,
|
|
|
|
"developer_mode": false,
|
|
|
|
"live_endpoint": "https:\/\/api2.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"developer_endpoint": "https:\/\/apitest.authorize.net\/xml\/v1\/request.api",
|
|
|
|
"merchant_id": "",
|
|
|
|
"password": "",
|
|
|
|
"api_key": "",
|
|
|
|
"store_id": "",
|
|
|
|
"shared_secret": "",
|
|
|
|
"merchant_access_code": "",
|
|
|
|
"secure_hash": "",
|
|
|
|
"account_id": "",
|
|
|
|
"site_id": "",
|
|
|
|
"site_code": "",
|
|
|
|
"account_number": "",
|
|
|
|
"store_password": "",
|
|
|
|
"merchant_key": "",
|
|
|
|
"pdt_key": "",
|
|
|
|
"passphrase": "",
|
|
|
|
"username": "",
|
|
|
|
"vendor": "",
|
|
|
|
"partner": "",
|
|
|
|
"px_post_username": "",
|
|
|
|
"px_post_password": "",
|
|
|
|
"signature": "",
|
|
|
|
"solution_type": [
|
|
|
|
"Sole",
|
|
|
|
"Mark"
|
|
|
|
],
|
|
|
|
"landing_page": [
|
|
|
|
"Billing",
|
|
|
|
"Login"
|
|
|
|
],
|
|
|
|
"brand_name": "",
|
|
|
|
"header_image_url": "",
|
|
|
|
"logo_image_url": "",
|
|
|
|
"border_color": "",
|
|
|
|
"secret_key": "",
|
|
|
|
"referrer_id": "",
|
|
|
|
"transaction_password": "",
|
|
|
|
"sub_account_id": "",
|
|
|
|
"secret_word": "",
|
|
|
|
"installation_id": "",
|
|
|
|
"callback_password": "",
|
|
|
|
"no_language_menu": false,
|
|
|
|
"fix_contact": false,
|
|
|
|
"hide_contact": false,
|
|
|
|
"hide_currency": false,
|
|
|
|
"signature_fields": "instId:amount:currency:cartId",
|
|
|
|
"key": "",
|
|
|
|
"sign_type": "MD5",
|
|
|
|
"input_charset": "utf-8",
|
|
|
|
"transport": "http",
|
|
|
|
"payment_type": 1,
|
|
|
|
"it_b_pay": "1d",
|
|
|
|
"website_key": "",
|
|
|
|
"secret": "",
|
|
|
|
"payment_routing_number": "",
|
|
|
|
"account": "",
|
|
|
|
"3d_secure": 0,
|
|
|
|
"shop_id": "",
|
|
|
|
"email": "",
|
|
|
|
"notify_url": "",
|
|
|
|
"client_id": "",
|
|
|
|
"language": "nl",
|
|
|
|
"callback_method": "POST",
|
|
|
|
"return_url": "",
|
|
|
|
"cancel_url": "",
|
|
|
|
"secret_api_key": "",
|
|
|
|
"public_api_key": "",
|
|
|
|
"terminal_id": "",
|
|
|
|
"verify_cvv": true,
|
|
|
|
"verify_address": false,
|
|
|
|
"verify_zip": false,
|
|
|
|
"profile_id": "",
|
|
|
|
"access_key": "",
|
|
|
|
"merchant_password": "",
|
|
|
|
"merchant_account_number": "",
|
|
|
|
"payment_method": "credit_card",
|
|
|
|
"locale": "en",
|
|
|
|
"endpoint": "https:\/\/paytrace.com\/api\/default.pay",
|
|
|
|
"site_reference": "",
|
|
|
|
"apply_three_d_secure": false,
|
|
|
|
"account_type": "ECOM",
|
|
|
|
"mid": "",
|
|
|
|
"vpn_pswd": "",
|
|
|
|
"remote_pswd": "",
|
|
|
|
"usage_type": "",
|
|
|
|
"confirm_email": "",
|
|
|
|
"test_status": "true",
|
|
|
|
"mail_customer": "true",
|
|
|
|
"additional_options": "",
|
|
|
|
"access_token": "",
|
|
|
|
"type": "goods",
|
|
|
|
"fee_payer": "payee",
|
|
|
|
"public_key": "",
|
|
|
|
"private_key": "",
|
|
|
|
"gateway_id": "",
|
|
|
|
"key_id": "",
|
|
|
|
"hmac": "",
|
|
|
|
"webhook_secret": "",
|
|
|
|
"token": "",
|
|
|
|
"sandbox": false
|
|
|
|
}
|
2019-09-24 13:48:25 +02:00
|
|
|
}
|
|
|
|
}';
|
|
|
|
}
|
2019-08-28 03:13:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|