1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Utils/Statics.php

3151 lines
92 KiB
PHP
Raw Normal View History

<?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;
/**
* 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": {
"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"
},
"46c5c1fed2c43acf4f379bae9c8b9f76": {
"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": ""
},
"944c20175bbe6b9972c05bcfe294c2c7": {
"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": ""
},
"4e0ed0d34552e6cb433506d1ac03a418": {
"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": ""
},
"513cdc81444c87c4b07258bc2858d3fa": {
"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": ""
},
"99c2a271b5088951334d1302e038c01a": {
"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": ""
},
"1bd651fb213ca0c9d66ae3c336dc77e8": {
"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": ""
},
"c3dec814e14cbd7d86abd92ce6789f8c": {
"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": ""
},
"070dffc5ca94f4e66216e44028ebd52d": {
"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": ""
},
"334d419939c06bd99b4dfd8a49243f0f": {
"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": ""
},
"d6814fc83f45d2935e7777071e629ef9": {
"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": ""
},
"0d97c97d227f91c5d0cb86d01e4a52c9": {
"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": ""
},
"a66b7062f4c8212d2c428209a34aa6bf": {
"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": ""
},
"7e6fc08b89467518a5953a4839f8baba": {
"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": ""
},
"38f2c48af60c7dd69e04248cbb24c36e": {
"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": ""
},
"80af24a6a69f5c0bbec33e930ab40665": {
"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": ""
},
"0749cb92a6b36c88bd9ff8aabd2efcab": {
"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": ""
},
"4c8f4e5d0f353a122045eb9a60cc0f2d": {
"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": ""
},
"8036a5aadb2bdaafb23502da8790b6a2": {
"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": ""
},
"d14dd26a37cecc30fdd65700bfb55b23": {
"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": ""
},
"d14dd26a37cdcc30fdd65700bfb55b23": {
"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": ""
},
"ea3b328bd72d381387281c3bd83bd97c": {
"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": ""
},
"a0035fc0d87c4950fb82c73e2fcb825a": {
"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": ""
},
"16dc1d3c8a865425421f64463faaf768": {
"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": ""
},
"43e639234f660d581ddac725ba7bcd29": {
"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"
},
"2f71dc17b0158ac30a7ae0839799e888": {
"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"
},
"733998ee4760b10f11fb48652571e02c": {
"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"
},
"6312879223e49c5cf92e194646bdee8f": {
"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": ""
},
"106ef7e7da9062b0df363903b455711c": {
"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": ""
},
"e9a38f0896b5b82d196be3b7020c8664": {
"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": ""
},
"0da4e18ed44a5bd5c8ec354d0ab7b301": {
"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": ""
},
"d3979e62eb603fbdf1c78fe3a8ba7009": {
"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
},
"557d98977e7ec02dfa53de4b69b335be": {
"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": ""
},
"54dc60c869a7322d87efbec5c0c25805": {
"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": ""
},
"e4a02f0a4b235eb5e9e294730703bb74": {
"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": ""
},
"1b3c6f3ccfea4f5e7eadeae188cccd7f": {
"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": ""
},
"7cba6ce5c125f9cb47ea8443ae671b68": {
"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"
},
"b98cfa5f750e16cee3524b7b7e78fbf6": {
"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": ""
},
"3758e7f7c6f4cecf0f4f348b9a00f456": {
"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": ""
},
"cbc7ef7c99d31ec05492fbcb37208263": {
"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
},
"e186a98d3b079028a73390bdc11bdb82": {
"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": ""
},
"761040aca40f685d1ab55e2084b30670": {
"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": ""
},
"1b2cef0e8c800204a29f33953aaf3360": {
"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": ""
},
"7ea2d40ecb1eb69ef8c3d03e5019028a": {
"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"
},
"70ab90cd6c5c1ab13208b3cef51c0894": {
"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"
},
"bbd736b3254b0aabed6ad7fda1298c88": {
"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"
},
"231cb401487b9f15babe04b1ac4f7a27": {
"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"
},
"bad8699d581d9fa040e59c0bb721a76c": {
"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": ""
},
"8fdeed552015b3c7b44ed6c8ebd9e992": {
"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"
},
"f7ec488676d310683fb51802d076d713": {
"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": ""
},
"30334a52fb698046572c627ca10412e8": {
"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": ""
},
"b9886f9257f0c6ee7c302f1c74475f6c": {
"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": ""
},
"ef498756b54db63c143af0ec433da803": {
"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
},
"ca52f618a39367a4c944098ebf977e1c": {
"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
}
}';
}
}