-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathfixtures.yml
1539 lines (1264 loc) · 36.8 KB
/
fixtures.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file has all of the ActiveMerchant test account credentials.
# Many gateways do not offer publicly available test accounts. In
# order to make testing the gateways easy you can copy this file to
# your home directory as the file ~/.active_merchant/fixtures.yml
# You can then place your own test account credentials in your local
# copy of the file.
#
# If the login is numeric, ensure that you place quotes around it.
# Leading zeros will be lost when YAML parses the file if you don't.
#
# Paste any required PEM certificates after the pem key.
#
adyen:
username: ''
password: ''
merchant_account: ''
airwallex:
client_id: SOMECREDENTIAL
client_api_key: ANOTHERCREDENTIAL
alelo:
client_id: xxxxxxx
client_secret: xxxxxxx
allied_wallet:
site_id: site_id
merchant_id: merchant_id
token: token
# Working credentials, no need to replace as of Oct 28 2014
authorize_net:
login: 7Tt72zseSzH
password: 7gTh55rdy92ZkP4z
axcessms:
channel: channel
sender: sender
login: login
password: password
# Working credentials, no need to replace
balanced:
login: 'e1c5ad38d1c711e1b36c026ba7e239a9'
bambora_apac:
username: nmi.api
password: qwerty123
# Bank Frick doesn't provide public testing data
bank_frick:
sender: sender-uuid
channel: channel-uuid
userid: user-uuid
userpwd: password
banwire:
login: "desarrollo"
# Non-alphanumeric characters may cause an authentication error
barclaycard_smartpay:
company: company
merchant: merchant
password: password
barclays_epdq_extra_plus:
login: merchant number
user: username
password: password
be2bill:
login: your_test_login
password: your_test_password
beanstream:
login: merchant id
user: username
password: password
secure_profile_api_key: API Access Passcode
recurring_api_key: API Access Passcode
api_key: API KEY
beanstream_interac:
login: merchant id
user: username
password: password
bit_pay:
api_key: 'rKrahSl7WRrYeKRUhGzbvW3nBzo0jG4FPaL8uPYaoPk'
blue_pay:
login: '100096218902'
password: 'MBUVE4G1BACMFM4W3XQHUUL2SMQRP.LW'
# Working credentials, no need to replace
blue_snap:
api_username: 'API_146117371665767340423'
api_password: 'nfYwTx8fFAvJqBXcxqwC8'
borgun:
processor: 118
merchant_id: 118
username: spreedly
password: Qxi.34k
bpoint:
username: 'A'
password: 'B'
merchant_number: 'C'
biller_code: ''
braintree_blue:
merchant_id: X
public_key: Y
private_key: Z
merchant_account_id: A
braintree_blue_with_ach_enabled:
merchant_id: X
public_key: Y
private_key: Z
merchant_account_id: A
venmo_profile_id: B
braintree_blue_with_processing_rules:
merchant_id: X
public_key: Y
private_key: Z
braintree_orange:
login: demo
password: password
# Working credentials, no need to replace
bridge_pay:
user_name: Spre3676
password: H3392nc5
# Working credentials, no need to replace
cams:
username: testintegrationc
password: password9
# Working credentials, no need to replace
card_connect:
merchant_id: "496160873888"
username: testing
password: testing123
#Username/Password given in sign up email. Not MMS credentials
card_save:
login: merchant_id
password: password
card_stream:
login: 103191
shared_secret: Dear0Coming15Edge
# Working credentials, no need to replace
cardknox:
api_key: ActiveMerchant_Test
# Working credentials, no need to replace
cardprocess:
user_id: 8a8294174e735d0c014e78beb6c5154f
password: cTZjAm9c87
entity_id: 8a8294174e735d0c014e78beb6b9154b
# Cashnet doesn't provide public testing data
cashnet:
merchant: 'X'
operator: 'X'
password: 'X'
merchant_gateway_name: 'X'
cecabank:
merchant_id: MERCHANTID
acquirer_bin: ACQUIRERBIN
terminal_id: TERMINALID
signature_key: KEY
encryption_key: KEY
cenpos:
merchant_id: SOMECREDENTIAL
password: ANOTHERCREDENTIAL
user_id: ANOTHERCREDENTIAL
certo_direct:
login: 1
password: vP6OwK3
checkout:
merchant_id: SBMTEST
password: Password1!
checkout_v2:
secret_key: SECRET_KEY_FOR_BASIC_TRANSACTIONS
client_id: CLIENT_ID_FOR_OAUTH_TRANSACTIONS
client_secret: CLIENT_SECRET_FOR_OAUTH_TRANSACTIONS
checkout_v2_token:
secret_key: sk_sbox_xxxxxxxxxxxxxxxxx
public_key: pk_sbox_xxxxxxxxxxxxxxxxx
citrus_pay:
userid: CPF00001
password: 7c70414732de7e0ba3a04db5f24fcec8
# Working credentials, no need to replace
clearhaus: &clearhaus
api_key: a2c583e7-23f2-4097-b327-84a87128cfb4
clearhaus_secure:
<<: *clearhaus
signing_key: 7e51b92e-ca7e-48e3-8a96-7d66cf1f2da2
private_key: |
-----BEGIN RSA PRIVATE KEY-----
MIIBOwIBAAJBALYK0zmwuYkH3YWcFNLLddx5cwDxEY7Gi1xITuQqRrU4yD3uSw+J
WYKknb4Tbndb6iEHY+e6gIGD+49TojnNeIUCAwEAAQJARyuYRRe4kcBHdPL+mSL+
Y0IAGkAlUyKAXYXPghidKD/v/oLrFaZWALGM2clv6UoYYpPnInSgbcud4sTcfeUm
QQIhAN2JZ2qv0WGcbIopBpwpQ5jDxMGVkmkVVUEWWABGF8+pAiEA0lySxTELZm8b
Gx9UEDRghN+Qv/OuIKFldu1Ba4f8W30CIQCaQFIBtunTTVdF28r+cLzgYW9eWwbW
pEP4TdZ4WlW6AQIhAMDCTUdeUpjxlH/87BXROORozAXocBW8bvJUI486U5ctAiAd
InviQqJd1KTGRDmWIGrE5YACVmW2JSszD9t5VKxkAA==
-----END RSA PRIVATE KEY-----
commerce_hub:
api_key: API KEY
api_secret: API SECRET
merchant_id: MERCHANT ID
terminal_id: TERMINAL ID
# Contact Support at it_support@commercegate.com for credentials and offer/site
commercegate:
login: "XXXXXXX"
password: "XXXXXXX"
site_id: "XXXXXXX"
offer_id: "XXXXXXX"
card_number: "XXXXXXXXXXXXXXXX"
conekta:
key: key_6FTbuwqhYs6zvyyeL3PySg
# Working credentials, no need to replace
creditcall:
terminal_id: '99961426'
transaction_key: '9drdRU9wJ65SNRw3'
# NOTE: the IP address you run the remote tests from will need to be
# whitelisted by Credorax; contact support@credorax.com as necessary to request
# your IP address be added to the whitelist for your test account.
credorax:
merchant_id: 'merchant_id'
cipher_key: 'cipher_key'
ct_payment:
api_key: SOMECREDENTIAL
company_number: '12345'
merchant_number: '12345678'
# Culqi does not provide public testing data
culqi:
merchant_id: MERCHANT
terminal_id: TERMINAL
partner_id: PARTNER
secret_key: SECRET
# To get 100% passing Cybersource remote tests, you must ask
# Cybersource support to enable the recurring and pinless debit
# services on your test account.
cyber_source:
login: X
password: Y
cyber_source_latam_pe:
login: merchant_id
password: soap_key
# Working credentials, no need to replace
cybersource_rest:
merchant_id: "testrest"
public_key: "08c94330-f618-42a3-b09d-e1e43be5efda"
private_key: "yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE="
# Working credentials, no need to replace
d_local:
login: aeaf9bbfa1
trans_key: 9de3769b7e
secret_key: ae132899f56162a669b38dab5927862f3
data_cash:
login: X
password: Y
datatrans:
merchant_id: MERCHANT_ID_WEB
password: MERCHANT_PASSWORD_WEB
# Working credentials, no need to replace
decidir_authorize:
api_key: 5a15fbc227224edabdb6f2e8219e8b28
preauth_mode: true
decidir_plus:
public_key: SOMECREDENTIAL
private_key: SOMECREDENTIAL
decidir_plus_preauth:
public_key: SOMECREDENTIAL
private_key: SOMECREDENTIAL
decidir_purchase:
api_key: 5df6b5764c3f4822aecdc82d56f26b9d
deepstack:
publishable_api_key: pk_test_7H5GkZJ4ktV38eZxKDItVMZZvluUhORE
app_id: sk_test_8fe27907-c359-4fe4-ad9b-eaaa
shared_secret: JC6zgUX3oZ9vRshFsM98lXzH4tu6j4ZfB4cSOqOX/xQ=
# No working test credentials
dibs:
merchant_id: SOMECREDENTIAL
secret_key: NOPUBLICCREDENTIAL
# Working credentials, no need to replace
digitzs:
app_key: tcwtTux8SPZYO44Gf0UHZH74Z1HSutqCxmIV2PFj2jRc9Poroh3Z3R1BBQNRQ98Q
api_key: 0HhRdOU2AsWVEu3gRIKi2UpMMmj8Fj48qggBYTo4
direc_pay:
login: 200904281000001
# Working credentials, no need to replace
ebanx:
integration_key: 1231000
efsnet:
login: X
password: Y
# Provided for url update test
elavon:
login: "009005"
user: "devportal"
password: "BDDZY5KOUDCNPV4L3821K7PETO4Z7TPYOJB06TYBI1CW771IDHXBVBP51HZ6ZANJ"
elavon_multi_currency:
login: "009006"
user: "devportal"
password: "XWJS3QTFCH40HW0QGHJKXAYADCTDH0TXXAKXAEZCGCCJ29CFNPCZT4KA9D5KQMDA"
multi_currency: true
element:
account_id: "1013963"
account_token: "683EED8A1A357EB91575A168E74482A74836FD72B1AD11B41B29B473CA9D65B9FE067701"
application_id: "5211"
acceptor_id: "3928907"
application_name: "Spreedly"
application_version: "1"
# login: merchant number
# password: referrer url (for authorize authentication)
epay:
login: X
password: Y
evo_ca:
username: demo
password: password
# Working credentials, no need to replace
eway:
login: '87654321'
eway_managed:
login: '87654321'
username: 'test@eway.com.au'
password: 'test123'
eway_rapid:
login: LOGIN
password: PASSWORD
# Working credentials, no need to replace
exact:
login: "A00427-01"
password: testus
# Working credentials, no need to replace
ezic:
account_id: "120536457270"
# Working credentials, no need to replace
fat_zebra:
username: TEST
token: TEST
federated_canada:
login: demo
password: password
finansbank:
login: FINANSAPI
password: FINANS06
client_id: 600100000
first_giving:
application_key: ''
security_token: ''
charity_id: "1234"
first_pay:
transaction_center_id: 1264
gateway_id: "a91c38c3-7d7f-4d29-acc7-927b4dca0dbe"
first_pay_rest_json:
mode: "rest_json"
merchant_key: "a91c38c3-7d7f-4d29-acc7-927b4dca0dbe"
processor_id: "15417"
firstdata_e4:
login: SD8821-67
password: T6bxSywbcccbJ19eDXNIGaCDOBg1W7T8
firstdata_e4_v27:
login: ALOGIN
password: APASSWORD
key_id: ANINTEGER
hmac_key: AMAGICALKEY
flex_charge:
app_key: 'your app key'
app_secret: 'app secret'
site_id: 'site id'
mid: 'merchant id'
flo2cash:
username: SOMECREDENTIAL
password: ANOTHERCREDENTIAL
account_id: ANOTHERCREDENTIAL
flo2cash_simple:
username: SOMECREDENTIAL
password: ANOTHERCREDENTIAL
account_id: ANOTHERCREDENTIAL
forte:
location_id: "176008"
account_id: "300111"
api_key: "f087a90f00f0ae57050c937ed3815c9f"
secret: "d793d64064e3113a74fa72035cfc3a1d"
fortis:
user_id: 'USER_ID'
user_api_key: 'USER_API_KEY'
developer_id: 'DEVELOPER_ID'
location_id: 'LOCATION_ID'
garanti:
login: "PROVAUT"
terminal_id: 30691300
merchant_id: 7000679
password: "123qweASD"
global_collect:
merchant_id: 2196
api_key_id: b2311c2c832dd238
secret_api_key: Av5wKihoVlLN8SnGm6669hBHyG4Y4aS4KwaZUCvEIbY=
global_collect_direct:
merchant_id: "NamastayTest"
api_key_id: "CF4CDF3F45F13C5CCBD0"
secret_api_key: "mvcEXR7Rem+KJE/atKsQ3Luqv37VEvTe2VOH5/Ibqd90VDzQ71Ht41RBVVyJuebzGnFu30dYpptgdrCcNvAu5A=="
global_transport:
global_user_name: "USERNAME"
global_password: "PASSWORD"
term_type: "ABC"
hdfc:
login: LOGIN
password: PASSWORD
hi_pay:
username: "USERNAME"
password: "PASSWORD"
# Working credentials, no need to replace
hps:
secret_api_key: "skapi_cert_MYl2AQAowiQAbLp5JesGKh7QFkcizOP2jcX9BrEMqQ"
hps_echeck:
secret_api_key:
iats_payments:
agent_code: TEST88
password: TEST88
region: na
inspire:
login: demo
password: password
instapay:
login: TEST0
password:
ipg:
store_id: "YOUR STORE ID"
user_id: "YOUR USER ID"
password: "YOUR PASSWORD"
pem_password: "CERTIFICATE PASSWORD"
pem: "YOUR CERTIFICATE WITH PRIVATE KEY"
ipg_ma:
store_id: "ONE OF YOUR STORE IDs"
user_id: "YOUR USER ID"
password: "YOUR PASSWORD"
pem_password: "CERTIFICATE PASSWORD"
pem: "YOUR CERTIFICATE WITH PRIVATE KEY"
# Working credentials, no need to replace
ipp:
username: nmi.api
password: qwerty123
iridium:
login: LOGIN
password: PASSWORD
itransact:
login: API_ACCESS_USERNAME
password: API_ACCESS_KEY
gateway_id: GATEWAY_ID
# Working credentials, no need to replace
iveri:
cert_id: CB69E68D-C7E7-46B9-9B7A-025DCABAD6EF
app_id: d10a603d-4ade-405b-93f1-826dfc0181e8
ixopay:
username: USERNAME
api_key: API_KEY
password: PASSWORD
secret: SHARED_SECRET
jetpay:
login: TESTTERMINAL
jetpay_v2:
login: TESTMCC3136X
komoju:
login: sk_f1dd75ce3d5cad477eac0c827c1cac8eaa51ede3
kushki:
public_merchant_id: "Your Public Merchant Id"
private_merchant_id: "Your Private Merchant Id"
latitude19:
account_number: "03022016"
configuration_id: "380835424362"
secret: "&2016(march)02"
linkpoint:
login: STOREID
pem: |
PASTE YOUR PEM FILE HERE
litle:
login: ACTIVE
password: MERCHANT
merchant_id: 101
# Working test credentials, no need to replace
maxipago:
login: "100"
password: "21g8u6gh6szw1gywfs165vui"
# Working credentials, no need to replace
mercado_pago:
access_token: "TEST-8527269031909288-071213-0fc96cb7cd3633189bfbe29f63722700__LB_LA__-263489584"
# Working test credentials, no need to replace
merchant_esolutions:
login: "94100008043900000004"
password: "gvQzgKXOTEoDzpzJzROrQQzoKLaEqxjf"
merchant_one:
username: 'demo'
password: 'password'
# Working credentials, no need to replace
merchant_partners:
account_id: TEST0
merchant_pin: "1234567890"
merchant_ware:
login:
password:
name:
# Working credentials, no need to replace
merchant_ware_version_four:
login: 'BK34Z768'
password: 'TCTTS-IDYQV-RDFY1-6DS01-WTPVH'
name: 'Test Spreedly PayItSimple'
merchant_warrior:
merchant_uuid: '50c5b9f0b52ea'
api_key: '8fr3ajm7'
api_passphrase: 'cymvlwgc'
# Working credentials, no need to replace
mercury:
login: '62589006=TEST'
password: 'xyz'
mercury_no_tokenization:
login: '595901'
password: 'xyz'
tokenization: false
metrics_global:
login: 'demo'
password: 'password'
micropayment:
access_key: "0b4832ca37a31e748c4490b58d743986"
# Working credentials, no need to replace
migs:
login: TESTH-STATION
password: 'F1CE6F32'
secure_hash: 'D8CF972645E69EA15A7D6005059E18DF'
advanced_login: activemerchant
advanced_password: test12345
# Working credentials, no need to replace
mit:
commerce_id: '147'
user: IVCA33721
api_key: IGECPJ0QOJJCEHUI
key_session: CB0DC4887DD1D5CEA205E66EE934E430
test: true
modern_payments:
login: login
password: password
moka:
dealer_code: DEALER_CODE
username: USERNAME
password: PASSWORD
# Working credentials, no need to replace
monei:
api_key: pk_test_3cb2d54b7ee145fa92d683c01816ad15
# Working credentials, no need to replace
moneris:
login: store3
password: yesguy
money_movers:
login: demo
password: password
mundipagg:
api_key: api_key
gateway_affiliation_id: gateway_affiliation_id
# left for backward-compatibility
gateway_id: gateway_id
# Working credentials, no need to replace
nab_transact:
login: ABC0001
password: changeit
# Working credentials, no need to replace
nab_transact_privileged:
login: XYZ0010
password: abcd1234
# Working credentials, no need to replace
ncr_secure_pay:
username: test_ecomm:public
password: publ1ct3st
net_registry:
login: X
password: Y
netaxept:
login: LOGIN
password: PASSWORD
netbanx:
api_key: APIKEY
account_number: ACCOUNTNUMBER
# Working credentials, no need to replace
# Contact Netbilling for login info to the admin area
netbilling:
login: '104901072025'
netpay:
store_id: 14
login: POS
password: plaza2020
network_merchants:
login: demo
password: password
nmi:
login: demo
password: password
nmi_secure:
security_key: '6457Thfj624V5r7WUwc5v6a68Zsd6YEm'
nuvei:
merchant_id: 'merchantId'
merchant_site_id: 'siteId'
secret_key: 'secretKey'
ogone:
login: LOGIN
user: USER
password: PASSWORD
signature: SIGNATURE
# Get credentials or api keys from https://dashboard.omise.co
omise:
public_key: pkey_test_4zt0fss8gs0z6b4zlsq
secret_key: skey_test_4zt0fss8eklsj88dx9l
api_version: '2015-11-17'
# Working credentials, no need to replace
openpay:
key: 'sk_e568c42a6c384b7ab02cd47d2e407cab'
merchant_id: 'mzdtln0bmtms6o3kck8f'
opp:
access_token: 'OGE4Mjk0MTc0YjdlY2IyODAxNGI5Njk5MjIwMDE1Y2N8c3k2S0pzVDg='
entity_id: '8a8294174d0a8edd014d242337942575'
optimal_payment:
store_id: test
password: test
account_number: ACCOUNTNUMBER
orbital_gateway:
login: LOGIN
password: PASSWORD
merchant_id: MERCHANTID
orbital_tandem_gateway:
login: LOGIN
password: PASSWORD
merchant_id: MERCHANTID
orbital_tpv_gateway:
login: LOGIN
password: PASSWORD
merchant_id: MERCHANTID
# Working credentials, no need to replace
pagarme:
api_key: 'ak_test_e1QGU2gL98MDCHZxHLJ9sofPUFJ7tH'
# Working credentials, no need to replace
pago_facil:
branch_id: 60f961360ca187d533d5adba7d969d6334771370
merchant_id: 62ad6f592ecf2faa87ef2437ed85a4d175e73c58
service_id: 3
# Working credentials, no need to replace
pay_arc:
api_key: APIKEY
# Working credentials, no need to replace
pay_conex:
account_id: '220614968961'
api_accesskey: '69e9c4dd6b8ab9ab47da4e288df78315'
# Working credentials, no need to replace
pay_gate_xml:
login: '10011021600'
password: 'test'
# Working credentials, no need to replace
pay_hub:
orgid: '123456'
username: 'abc123DEF'
password: 'abc123DEF'
tid: '123'
# Working credentials, no need to replace
pay_junction:
login: 'pj-ql-01'
password: 'pj-ql-01p'
# Working credentials, no need to replace
pay_junction_v2:
api_login: 'pj-ql-01'
api_password: 'pj-ql-01p'
api_key: ''
pay_secure:
login: LOGIN
password: PASSWORD
pay_trace:
username: USERNAME
password: PASSWORD
integrator_id: INTEGRATOR_ID
paybox_direct:
login: 1999888
password: 1999888I
rang: 222
credit_card_ok_3ds: 4012001037141112
credit_card_nok_3ds: 4012001037141113
credit_card_ok_3ds_not_enrolled: 4012001038443335
credit_card_ok: 1111222233334444
credit_card_nok: 1111222233334445
# Working credentials, no need to replace
payeezy:
apikey: UyDMTXx6TD9WErF6ynw7xeEfCAn8fcGs
apisecret: 2a4974e242c91cab7f38910938f2a5db79e89756b084bbf7cab7849b50a9930f
token: fdoa-a480ce8951daa73262734cf102641994c1e55e7cdf4c02b6
payex:
account: ACCOUNT
# encryption key is generated via the PayEx Admin console
encryption_key: ENCRYPTION_KEY
# Working credentials, no need to replace
payflow:
login: 'spreedlyIntegrations'
password: 'L9DjqEKjXCkU'
partner: 'PayPal'
payflow_uk:
login: LOGIN
password: PASSWORD
partner: PayPalUk
payment_express:
login: LOGIN
password: PASSWORD
paymentez:
application_code: APPCODE
app_key: APPKEY
paymentez_ecuador:
application_code: APPCODE
app_key: APPKEY
paymill:
private_key: a9580be4a7b9d0151a3da88c6c935ce0
public_key: 57313835619696ac361dc591bc973626
paypal_certificate:
login: activemerchant-cert-test_api1.example.com
password: ERDD3JRFU5H5DQXS
subject:
pem: |
-----BEGIN RSA PRIVATE KEY-----
MIICXQIBAAKBgQD/fK2V+joi32b3hXwyZdWTrjX0eXF1NTY7iSvBDPipJalFcopa
RRQV41WHB7Ard8g4tsw9uP4aDqil/MJqoLm2pttOokKO1CX1R4xVz8kITefTDrMT
uGs43Sz6Kd/GLKeYpc+kk7vLgP9CqUNnuBWPLzw98t9XKTcdSf140WciPwIDAQAB
AoGAMxWK3+IYncBtpjBalPknq0+6GhfuR7FMFrtmtEMTtT6CihBM+Z+2VGoQP9+Z
qhdZQX3LeMv0guFLd2UCuq9IcobEuBL5Oyxvd1MYcSVuMHa8DQBYQfL2Dtq/m8K9
vTGdsvL3IyVlWs9xxZRtuEoBpmb3axjohVS62rq7CzGbMYECQQD/054sW/V7MZD7
8Siz1Dhe3CJpGJ3RIkBzuMi5vtJftx6S4GX4jsbE8tyMSwX7TnO1xvHP7s1OCSEC
gUwIMQQlAkEA/6kAVG37ErrN5WX0kw+UIrBYQhnyZvjqVIqSSm8ZAn1cDbx84GbX
UTbPpJBbpcP5PDxeQnBqpvnLuIZfzSZtkwJAYSfD5ULTOoL7dcMDWzAYbGYbp2AS
506jvY8KpAgFKxaHRO51q2zFrhwxiBIh5mvH49v3D6m4TI+I+sOR1XaQBQJBAIvh
2i5X5rH+x70mJcV5FqJMPl4ceEbjFsOe9iAH3XVBRea2JNVbL6BeDwqJebufGHVe
ymwrug8WSeLykuRajEUCQQDlDXignvtCZlXlOCxohPuJ+o+vnF3R/L6MBtQmRjWI
mv6epzBqjXcB9Dv3n10k7M9H6YKfAZbuZ23PDTxrv3o+
-----END RSA PRIVATE KEY-----
-----BEGIN CERTIFICATE-----
MIICsDCCAhmgAwIBAgIDEBZBMA0GCSqGSIb3DQEBBQUAMIGfMQswCQYDVQQGEwJV
UzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxFTATBgNV
BAoTDFBheVBhbCwgSW5jLjEWMBQGA1UECxQNc2FuZGJveF9jZXJ0czEbMBkGA1UE
AxQSc2FuZGJveF9jYW1lcmNoYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwu
Y29tMB4XDTE0MTAyMzE0MzQxM1oXDTI0MTAyMDE0MzQxM1owgYoxMjAwBgNVBAMU
KWFjdGl2ZW1lcmNoYW50LWNlcnQtdGVzdF9hcGkxLmV4YW1wbGUuY29tMScwJQYD
VQQKEx5OYXRoYW5pZWwgVGFsYm90dCdzIFRlc3QgU3RvcmUxETAPBgNVBAcTCFNh
biBKb3NlMQswCQYDVQQIEwJDQTELMAkGA1UEBhMCVVMwgZ8wDQYJKoZIhvcNAQEB
BQADgY0AMIGJAoGBAP98rZX6OiLfZveFfDJl1ZOuNfR5cXU1NjuJK8EM+KklqUVy
ilpFFBXjVYcHsCt3yDi2zD24/hoOqKX8wmqgubam206iQo7UJfVHjFXPyQhN59MO
sxO4azjdLPop38Ysp5ilz6STu8uA/0KpQ2e4FY8vPD3y31cpNx1J/XjRZyI/AgMB
AAGjDTALMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQEFBQADgYEABR7D4mbOHBHYgMsG
sSxxYqqvhFSF7/HBQW4G132w6lxKVqdF3a6ICJYC/gOjOQ609kowDOrCwag9cbiO
3gPzIjyqNemdkTJxiTaq9+fG7G+r6f+pXo0ZVvfFjgtoSUVdMlqgu572EEZOQmSL
w00oJt7RcWBpIkpS18Qpmk6KZ7o=
-----END CERTIFICATE-----
paypal_signature:
login: activemerchant-test_api1.example.com
password: HBC6A84QLRWC923A
signature: AFcWxV21C7fd0v3bYYYRCpSSRl31AC-11AKBL8FFO9tjImL311y8a0hx
paysafe:
login: SOMECREDENTIAL
secret_key: ANOTHERCREDENTIAL
account_id: CREDENTIAL
payscout:
username: demo
password: password
# There are all kind of special options that must be set on a test account, and
# PayU is not transparent about what they are. At this point you need to tell
# them specifically that the account will be used with Spreedly, which should
# hopefully get you the right options.
payu_in:
key: KEY
salt: SALT
# Working credentials, no need to replace
payu_latam:
merchant_id: "508029"
account_id: "512322"
api_login: "pRRXKOl8ikMmt9u"
api_key: "4Vj8eK4rloUd272L48hsrarnUA"
payway:
username:
password:
pem:
# Working credentials, no need to replace
payway_dot_com:
login: "sprerestwsdev"
password: "sprerestwsdev1!"
company_id: "3"
source_id: "67"
pin:
api_key: "I_mo9BUUUXIwXF-avcs3LA"
plexo:
client_id: YOUR_CLIENT_ID
api_key: YOUR_API_KEY
merchant_id: YOUR_MERCHANT_ID
plugnpay:
login: LOGIN
password: PASSWORD
priority:
api_key: SANDBOX_KEY
secret: SECRET
merchant_id: MERCHANT_ID
# Working credentials, no need to replace
pro_pay:
cert_str: "5ab9cddef2e4911b77e0c4ffb70f03"
# Working credentials, no need to replace
psigate:
login: teststore
password: psigate1234
psl_card:
login: LOGIN
# PSL doesn't want the test data made public
psl_maestro:
number:
month:
year:
verification_value:
issue_number:
psl_maestro_address:
address1:
address2:
city:
state:
zip:
psl_solo:
number:
month:
year:
verification_value:
issue_number:
psl_solo_address: