quickpos 1.0.911 → 1.0.912
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/PROVIDERS-DETAILS.md +1544 -0
- package/examples/example-2checkout.js +78 -0
- package/examples/example-bitpay.js +83 -0
- package/examples/example-cardcom.js +80 -0
- package/examples/example-cashfree.js +109 -0
- package/examples/example-checkout.js +85 -0
- package/examples/example-coingate.js +101 -0
- package/examples/example-coinpayments.js +89 -0
- package/examples/example-doku.js +27 -0
- package/examples/example-epay.js +64 -0
- package/examples/example-epoint.js +91 -0
- package/examples/example-freekassa.js +26 -0
- package/{example-heleket.js → examples/example-heleket.js} +3 -3
- package/examples/example-konnect.js +227 -0
- package/examples/example-midtrans.js +80 -0
- package/examples/example-noonpayments.js +297 -0
- package/examples/example-nowpayments.js +289 -0
- package/examples/example-omise.js +27 -0
- package/examples/example-paycom.js +82 -0
- package/{example-paydisini.js → examples/example-paydisini.js} +1 -1
- package/examples/example-payid19.js +87 -0
- package/examples/example-paykun.js +29 -0
- package/examples/example-payme.js +202 -0
- package/examples/example-paymentwall.js +201 -0
- package/examples/example-paynet.js +104 -0
- package/examples/example-paynettr.js +18 -0
- package/examples/example-payoneer.js +74 -0
- package/examples/example-payop.js +351 -0
- package/examples/example-paypal.js +200 -0
- package/examples/example-payriff.js +89 -0
- package/examples/example-paysend.js +81 -0
- package/examples/example-payspace.js +103 -0
- package/examples/example-payssion.js +27 -0
- package/examples/example-paytabs.js +28 -0
- package/examples/example-paytm.js +78 -0
- package/examples/example-payuindia.js +108 -0
- package/examples/example-payulatam.js +75 -0
- package/examples/example-phonepe.js +27 -0
- package/examples/example-picpay.js +27 -0
- package/examples/example-plisio.js +84 -0
- package/examples/example-portwallet.js +90 -0
- package/examples/example-primepayments.js +250 -0
- package/examples/example-razorpay.js +30 -0
- package/examples/example-senangpay.js +28 -0
- package/examples/example-shurjopay.js +94 -0
- package/examples/example-toyyibpay.js +80 -0
- package/examples/example-tripay.js +89 -0
- package/examples/example-unitpay.js +26 -0
- package/examples/example-urway.js +28 -0
- package/examples/example-volet.js +80 -0
- package/examples/example-xendit.js +28 -0
- package/examples/example-yallapay.js +253 -0
- package/examples/example-yookassa.js +27 -0
- package/examples/example-youcanpay.js +28 -0
- package/examples/example-zarinpal.js +98 -0
- package/{example.js → examples/example.js} +1 -1
- package/lib/2checkout.js +165 -0
- package/lib/amazonpay.js +161 -0
- package/lib/bitpay.js +122 -0
- package/lib/cardcom.js +193 -0
- package/lib/cashfree.js +184 -0
- package/lib/checkout.js +248 -0
- package/lib/coinbase.js +150 -0
- package/lib/coingate.js +137 -0
- package/lib/coinpayments.js +245 -0
- package/lib/doku.js +173 -0
- package/lib/epay.js +175 -0
- package/lib/epoint.js +162 -0
- package/lib/freekassa.js +128 -0
- package/lib/instamojo.js +158 -0
- package/lib/konnect.js +211 -0
- package/lib/midtrans.js +227 -0
- package/lib/noonpayments.js +650 -0
- package/lib/nowpayments.js +311 -0
- package/lib/omise.js +150 -0
- package/lib/paddle.js +180 -0
- package/lib/paycom.js +216 -0
- package/lib/payid19.js +211 -0
- package/lib/paykun.js +144 -0
- package/lib/payme.js +302 -0
- package/lib/paymentwall.js +205 -0
- package/lib/paynet.js +186 -0
- package/lib/paynettr.js +165 -0
- package/lib/payoneer.js +128 -0
- package/lib/payop.js +256 -0
- package/lib/paypal.js +542 -0
- package/lib/payriff.js +148 -0
- package/lib/paysend.js +189 -0
- package/lib/payspace.js +168 -0
- package/lib/payssion.js +177 -0
- package/lib/paytabs.js +145 -0
- package/lib/paytm.js +253 -0
- package/lib/payuindia.js +162 -0
- package/lib/payulatam.js +179 -0
- package/lib/perfectmoney.js +143 -0
- package/lib/phonepe.js +174 -0
- package/lib/picpay.js +119 -0
- package/lib/plisio.js +234 -0
- package/lib/portwallet.js +152 -0
- package/lib/primepayments.js +256 -0
- package/lib/razorpay.js +205 -0
- package/lib/senangpay.js +130 -0
- package/lib/shurjopay.js +159 -0
- package/lib/toyyibpay.js +151 -0
- package/lib/tripay.js +220 -0
- package/lib/unitpay.js +223 -0
- package/lib/urway.js +182 -0
- package/lib/volet.js +147 -0
- package/lib/xendit.js +206 -0
- package/lib/yallapay.js +279 -0
- package/lib/yookassa.js +193 -0
- package/lib/youcanpay.js +124 -0
- package/lib/zarinpal.js +157 -0
- package/package.json +138 -64
- package/readme.md +348 -105
- package/test.js +492 -0
- package/lib/vallet.js +0 -22
- /package/{example-anypay.js → examples/example-anypay.js} +0 -0
- /package/{example-bufpay.js → examples/example-bufpay.js} +0 -0
- /package/{example-cryptomus.js → examples/example-cryptomus.js} +0 -0
- /package/{example-esnekpos.js → examples/example-esnekpos.js} +0 -0
- /package/{example-fedapay.js → examples/example-fedapay.js} +0 -0
- /package/{example-iyzico.js → examples/example-iyzico.js} +0 -0
- /package/{example-papara.js → examples/example-papara.js} +0 -0
- /package/{example-payeer.js → examples/example-payeer.js} +0 -0
- /package/{example-paymaya.js → examples/example-paymaya.js} +0 -0
- /package/{example-shopier.js → examples/example-shopier.js} +0 -0
- /package/{ipaymu.js → examples/ipaymu.js} +0 -0
- /package/{oderopay.js → examples/oderopay.js} +0 -0
|
@@ -0,0 +1,1544 @@
|
|
|
1
|
+
# 📊 QuickPos - Ödeme Sağlayıcıları Detaylı Rehberi
|
|
2
|
+
|
|
3
|
+
Bu dokümantasyon, QuickPos tarafından desteklenen tüm 48 ödeme sağlayıcısının detaylı bilgilerini içermektedir.
|
|
4
|
+
|
|
5
|
+
## İçindekiler
|
|
6
|
+
- [Asya-Pasifik Bölgesi](#asya-pasifik-bölgesi)
|
|
7
|
+
- [Orta Doğu ve Afrika](#orta-doğu-ve-afrika)
|
|
8
|
+
- [Avrupa](#avrupa)
|
|
9
|
+
- [Latin Amerika](#latin-amerika)
|
|
10
|
+
- [Global Ödeme Sistemleri](#global-ödeme-sistemleri)
|
|
11
|
+
- [Kripto Para Ödeme Sistemleri](#kripto-para-ödeme-sistemleri)
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Asya-Pasifik Bölgesi
|
|
16
|
+
|
|
17
|
+
### 🇮🇩 Midtrans (Endonezya)
|
|
18
|
+
- **Website**: https://midtrans.com
|
|
19
|
+
- **Desteklenen Ülkeler**: Endonezya
|
|
20
|
+
- **Para Birimleri**: IDR (Indonesian Rupiah)
|
|
21
|
+
- **Client Oluşturma**:
|
|
22
|
+
```javascript
|
|
23
|
+
{
|
|
24
|
+
serverKey: 'YOUR_SERVER_KEY',
|
|
25
|
+
clientKey: 'YOUR_CLIENT_KEY',
|
|
26
|
+
isProduction: false
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
- **createPayment Gereken Alanlar**:
|
|
30
|
+
- `amount`: Ödeme tutarı (IDR)
|
|
31
|
+
- `orderId`: Benzersiz sipariş ID
|
|
32
|
+
- `name`: Müşteri adı
|
|
33
|
+
- `email`: Müşteri email
|
|
34
|
+
- `phone`: Müşteri telefon
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
### 🇮🇩 Tripay (Endonezya)
|
|
39
|
+
- **Website**: https://tripay.co.id
|
|
40
|
+
- **Desteklenen Ülkeler**: Endonezya
|
|
41
|
+
- **Para Birimleri**: IDR (Indonesian Rupiah)
|
|
42
|
+
- **Client Oluşturma**:
|
|
43
|
+
```javascript
|
|
44
|
+
{
|
|
45
|
+
apiKey: 'YOUR_API_KEY',
|
|
46
|
+
privateKey: 'YOUR_PRIVATE_KEY',
|
|
47
|
+
merchantCode: 'YOUR_MERCHANT_CODE',
|
|
48
|
+
isProduction: false
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
- **createPayment Gereken Alanlar**:
|
|
52
|
+
- `amount`: Ödeme tutarı (IDR)
|
|
53
|
+
- `method`: Ödeme yöntemi kodu
|
|
54
|
+
- `orderId`: Benzersiz sipariş ID
|
|
55
|
+
- `name`: Müşteri adı
|
|
56
|
+
- `email`: Müşteri email
|
|
57
|
+
- `phone`: Müşteri telefon
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
### 🇮🇩 Doku (Endonezya)
|
|
62
|
+
- **Website**: https://developers.doku.com
|
|
63
|
+
- **Desteklenen Ülkeler**: Endonezya
|
|
64
|
+
- **Para Birimleri**: IDR (Indonesian Rupiah)
|
|
65
|
+
- **Client Oluşturma**:
|
|
66
|
+
```javascript
|
|
67
|
+
{
|
|
68
|
+
clientId: 'YOUR_CLIENT_ID',
|
|
69
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
70
|
+
sharedKey: 'YOUR_SHARED_KEY',
|
|
71
|
+
sandbox: true
|
|
72
|
+
}
|
|
73
|
+
```
|
|
74
|
+
- **createPayment Gereken Alanlar**:
|
|
75
|
+
- `amount`: Ödeme tutarı (IDR)
|
|
76
|
+
- `orderId`: Benzersiz sipariş ID
|
|
77
|
+
- `callback_link`: Callback URL
|
|
78
|
+
- `name`: Müşteri adı
|
|
79
|
+
- `email`: Müşteri email
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
### 🇮🇩 PayID19 (Endonezya)
|
|
84
|
+
- **Website**: https://payid19.com
|
|
85
|
+
- **Desteklenen Ülkeler**: Endonezya
|
|
86
|
+
- **Para Birimleri**: IDR (Indonesian Rupiah)
|
|
87
|
+
- **Client Oluşturma**:
|
|
88
|
+
```javascript
|
|
89
|
+
{
|
|
90
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
91
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
92
|
+
}
|
|
93
|
+
```
|
|
94
|
+
- **createPayment Gereken Alanlar**:
|
|
95
|
+
- `amount`: Ödeme tutarı (IDR)
|
|
96
|
+
- `orderId`: Benzersiz sipariş ID
|
|
97
|
+
- `callback_link`: Callback URL
|
|
98
|
+
- `name`: Müşteri adı
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
### 🇮🇩 🇵🇭 Xendit (Endonezya & Filipinler)
|
|
103
|
+
- **Website**: https://www.xendit.co
|
|
104
|
+
- **Desteklenen Ülkeler**: Endonezya, Filipinler
|
|
105
|
+
- **Para Birimleri**: IDR (Indonesian Rupiah), PHP (Philippine Peso)
|
|
106
|
+
- **Client Oluşturma**:
|
|
107
|
+
```javascript
|
|
108
|
+
{
|
|
109
|
+
apiKey: 'YOUR_API_KEY',
|
|
110
|
+
webhookToken: 'YOUR_WEBHOOK_TOKEN'
|
|
111
|
+
}
|
|
112
|
+
```
|
|
113
|
+
- **createPayment Gereken Alanlar**:
|
|
114
|
+
- `amount`: Ödeme tutarı
|
|
115
|
+
- `orderId`: Benzersiz sipariş ID
|
|
116
|
+
- `paymentMethod`: 'invoice', 'ewallet', 'va', 'qr'
|
|
117
|
+
- `callback_link`: Callback URL
|
|
118
|
+
- `name`: Müşteri adı
|
|
119
|
+
- `email`: Müşteri email
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
### 🇲🇾 ToyyibPay (Malezya)
|
|
124
|
+
- **Website**: https://toyyibpay.com
|
|
125
|
+
- **Desteklenen Ülkeler**: Malezya
|
|
126
|
+
- **Para Birimleri**: MYR (Malaysian Ringgit)
|
|
127
|
+
- **Client Oluşturma**:
|
|
128
|
+
```javascript
|
|
129
|
+
{
|
|
130
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
131
|
+
categoryCode: 'YOUR_CATEGORY_CODE'
|
|
132
|
+
}
|
|
133
|
+
```
|
|
134
|
+
- **createPayment Gereken Alanlar**:
|
|
135
|
+
- `amount`: Ödeme tutarı (MYR)
|
|
136
|
+
- `orderId`: Benzersiz sipariş ID
|
|
137
|
+
- `callback_link`: Callback URL
|
|
138
|
+
- `name`: Müşteri adı
|
|
139
|
+
- `email`: Müşteri email
|
|
140
|
+
- `phone`: Müşteri telefon
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
### 🇲🇾 SenangPay (Malezya)
|
|
145
|
+
- **Website**: https://senangpay.my
|
|
146
|
+
- **Desteklenen Ülkeler**: Malezya
|
|
147
|
+
- **Para Birimleri**: MYR (Malaysian Ringgit)
|
|
148
|
+
- **Client Oluşturma**:
|
|
149
|
+
```javascript
|
|
150
|
+
{
|
|
151
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
152
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
153
|
+
sandbox: true
|
|
154
|
+
}
|
|
155
|
+
```
|
|
156
|
+
- **createPayment Gereken Alanlar**:
|
|
157
|
+
- `amount`: Ödeme tutarı (MYR)
|
|
158
|
+
- `orderId`: Benzersiz sipariş ID
|
|
159
|
+
- `description`: Ödeme açıklaması
|
|
160
|
+
- `name`: Müşteri adı
|
|
161
|
+
- `email`: Müşteri email
|
|
162
|
+
- `phone`: Müşteri telefon
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
### 🇮🇳 Paytm (Hindistan)
|
|
167
|
+
- **Website**: https://paytm.com
|
|
168
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
169
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
170
|
+
- **Client Oluşturma**:
|
|
171
|
+
```javascript
|
|
172
|
+
{
|
|
173
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
174
|
+
merchantKey: 'YOUR_MERCHANT_KEY',
|
|
175
|
+
website: 'YOUR_WEBSITE',
|
|
176
|
+
industry: 'Retail',
|
|
177
|
+
isProduction: false
|
|
178
|
+
}
|
|
179
|
+
```
|
|
180
|
+
- **createPayment Gereken Alanlar**:
|
|
181
|
+
- `amount`: Ödeme tutarı (INR)
|
|
182
|
+
- `orderId`: Benzersiz sipariş ID
|
|
183
|
+
- `callback_link`: Callback URL
|
|
184
|
+
- `customerId`: Müşteri ID
|
|
185
|
+
- `email`: Müşteri email
|
|
186
|
+
- `phone`: Müşteri telefon
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
### 🇮🇳 Cashfree (Hindistan)
|
|
191
|
+
- **Website**: https://www.cashfree.com
|
|
192
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
193
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
194
|
+
- **Client Oluşturma**:
|
|
195
|
+
```javascript
|
|
196
|
+
{
|
|
197
|
+
appId: 'YOUR_APP_ID',
|
|
198
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
199
|
+
environment: 'sandbox'
|
|
200
|
+
}
|
|
201
|
+
```
|
|
202
|
+
- **createPayment Gereken Alanlar**:
|
|
203
|
+
- `amount`: Ödeme tutarı (INR)
|
|
204
|
+
- `orderId`: Benzersiz sipariş ID
|
|
205
|
+
- `callback_link`: Callback URL
|
|
206
|
+
- `name`: Müşteri adı
|
|
207
|
+
- `email`: Müşteri email
|
|
208
|
+
- `phone`: Müşteri telefon
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
### 🇮🇳 PayU India (Hindistan)
|
|
213
|
+
- **Website**: https://payu.in
|
|
214
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
215
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
216
|
+
- **Client Oluşturma**:
|
|
217
|
+
```javascript
|
|
218
|
+
{
|
|
219
|
+
merchantKey: 'YOUR_MERCHANT_KEY',
|
|
220
|
+
salt: 'YOUR_SALT',
|
|
221
|
+
sandbox: true
|
|
222
|
+
}
|
|
223
|
+
```
|
|
224
|
+
- **createPayment Gereken Alanlar**:
|
|
225
|
+
- `amount`: Ödeme tutarı (INR)
|
|
226
|
+
- `orderId`: Benzersiz sipariş ID
|
|
227
|
+
- `productInfo`: Ürün bilgisi
|
|
228
|
+
- `firstname`: Müşteri adı
|
|
229
|
+
- `email`: Müşteri email
|
|
230
|
+
- `phone`: Müşteri telefon
|
|
231
|
+
- `callback_link`: Callback URL
|
|
232
|
+
|
|
233
|
+
---
|
|
234
|
+
|
|
235
|
+
### 🇮🇳 PayKun (Hindistan)
|
|
236
|
+
- **Website**: https://paykun.com
|
|
237
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
238
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
239
|
+
- **Client Oluşturma**:
|
|
240
|
+
```javascript
|
|
241
|
+
{
|
|
242
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
243
|
+
accessToken: 'YOUR_ACCESS_TOKEN',
|
|
244
|
+
encryptionKey: 'YOUR_ENCRYPTION_KEY',
|
|
245
|
+
sandbox: true
|
|
246
|
+
}
|
|
247
|
+
```
|
|
248
|
+
- **createPayment Gereken Alanlar**:
|
|
249
|
+
- `amount`: Ödeme tutarı (INR)
|
|
250
|
+
- `orderId`: Benzersiz sipariş ID
|
|
251
|
+
- `callback_link`: Callback URL
|
|
252
|
+
- `name`: Müşteri adı
|
|
253
|
+
- `email`: Müşteri email
|
|
254
|
+
- `phone`: Müşteri telefon
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
258
|
+
### 🇮🇳 Razorpay (Hindistan)
|
|
259
|
+
- **Website**: https://razorpay.com
|
|
260
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
261
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
262
|
+
- **Client Oluşturma**:
|
|
263
|
+
```javascript
|
|
264
|
+
{
|
|
265
|
+
keyId: 'YOUR_KEY_ID',
|
|
266
|
+
keySecret: 'YOUR_KEY_SECRET'
|
|
267
|
+
}
|
|
268
|
+
```
|
|
269
|
+
- **createPayment Gereken Alanlar**:
|
|
270
|
+
- `amount`: Ödeme tutarı (INR)
|
|
271
|
+
- `orderId`: Benzersiz sipariş ID
|
|
272
|
+
- `callback_link`: Callback URL
|
|
273
|
+
- `merchantName`: İşletme adı
|
|
274
|
+
- `name`: Müşteri adı
|
|
275
|
+
- `email`: Müşteri email
|
|
276
|
+
- `phone`: Müşteri telefon
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
### 🇮🇳 Instamojo (Hindistan)
|
|
281
|
+
- **Website**: https://www.instamojo.com
|
|
282
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
283
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
284
|
+
- **Client Oluşturma**:
|
|
285
|
+
```javascript
|
|
286
|
+
{
|
|
287
|
+
apiKey: 'YOUR_API_KEY',
|
|
288
|
+
authToken: 'YOUR_AUTH_TOKEN',
|
|
289
|
+
sandbox: true
|
|
290
|
+
}
|
|
291
|
+
```
|
|
292
|
+
- **createPayment Gereken Alanlar**:
|
|
293
|
+
- `amount`: Ödeme tutarı (INR)
|
|
294
|
+
- `purpose`: Ödeme amacı
|
|
295
|
+
- `name`: Müşteri adı
|
|
296
|
+
- `email`: Müşteri email
|
|
297
|
+
- `phone`: Müşteri telefon
|
|
298
|
+
- `callback_link`: Callback URL
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
### 🇮🇳 PhonePe (Hindistan)
|
|
303
|
+
- **Website**: https://www.phonepe.com
|
|
304
|
+
- **Desteklenen Ülkeler**: Hindistan
|
|
305
|
+
- **Para Birimleri**: INR (Indian Rupee)
|
|
306
|
+
- **Client Oluşturma**:
|
|
307
|
+
```javascript
|
|
308
|
+
{
|
|
309
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
310
|
+
saltKey: 'YOUR_SALT_KEY',
|
|
311
|
+
saltIndex: 1,
|
|
312
|
+
sandbox: true
|
|
313
|
+
}
|
|
314
|
+
```
|
|
315
|
+
- **createPayment Gereken Alanlar**:
|
|
316
|
+
- `amount`: Ödeme tutarı (INR)
|
|
317
|
+
- `orderId`: Benzersiz sipariş ID
|
|
318
|
+
- `callback_link`: Callback URL
|
|
319
|
+
- `phone`: Müşteri telefon
|
|
320
|
+
- `userId`: Müşteri ID
|
|
321
|
+
|
|
322
|
+
---
|
|
323
|
+
|
|
324
|
+
### 🇮🇷 Zarinpal (İran)
|
|
325
|
+
- **Website**: https://www.zarinpal.com
|
|
326
|
+
- **Desteklenen Ülkeler**: İran
|
|
327
|
+
- **Para Birimleri**: IRR (Iranian Rial), IRT (Iranian Toman)
|
|
328
|
+
- **Client Oluşturma**:
|
|
329
|
+
```javascript
|
|
330
|
+
{
|
|
331
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
332
|
+
sandbox: true
|
|
333
|
+
}
|
|
334
|
+
```
|
|
335
|
+
- **createPayment Gereken Alanlar**:
|
|
336
|
+
- `amount`: Ödeme tutarı (IRT)
|
|
337
|
+
- `callback_link`: Callback URL
|
|
338
|
+
- `description`: Ödeme açıklaması
|
|
339
|
+
- `email`: Müşteri email (opsiyonel)
|
|
340
|
+
- `phone`: Müşteri telefon (opsiyonel)
|
|
341
|
+
|
|
342
|
+
---
|
|
343
|
+
|
|
344
|
+
### 🇮🇱 Cardcom (İsrail)
|
|
345
|
+
- **Website**: https://www.cardcom.co.il
|
|
346
|
+
- **Desteklenen Ülkeler**: İsrail
|
|
347
|
+
- **Para Birimleri**: ILS (Israeli Shekel)
|
|
348
|
+
- **Client Oluşturma**:
|
|
349
|
+
```javascript
|
|
350
|
+
{
|
|
351
|
+
terminalNumber: 'YOUR_TERMINAL_NUMBER',
|
|
352
|
+
apiName: 'YOUR_API_NAME'
|
|
353
|
+
}
|
|
354
|
+
```
|
|
355
|
+
- **createPayment Gereken Alanlar**:
|
|
356
|
+
- `amount`: Ödeme tutarı (ILS)
|
|
357
|
+
- `orderId`: Benzersiz sipariş ID
|
|
358
|
+
- `callback_link`: Callback URL
|
|
359
|
+
- `name`: Müşteri adı
|
|
360
|
+
- `email`: Müşteri email
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
### 🇺🇿 Paycom (Özbekistan)
|
|
365
|
+
- **Website**: https://paycom.uz
|
|
366
|
+
- **Desteklenen Ülkeler**: Özbekistan
|
|
367
|
+
- **Para Birimleri**: UZS (Uzbekistan Som)
|
|
368
|
+
- **Client Oluşturma**:
|
|
369
|
+
```javascript
|
|
370
|
+
{
|
|
371
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
372
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
373
|
+
}
|
|
374
|
+
```
|
|
375
|
+
- **createPayment Gereken Alanlar**:
|
|
376
|
+
- `amount`: Ödeme tutarı (UZS, tiyin cinsinden)
|
|
377
|
+
- `orderId`: Benzersiz sipariş ID
|
|
378
|
+
- `account`: Hesap bilgisi
|
|
379
|
+
|
|
380
|
+
---
|
|
381
|
+
|
|
382
|
+
### 🇵🇭 PayMaya (Filipinler)
|
|
383
|
+
- **Website**: https://www.paymaya.com
|
|
384
|
+
- **Desteklenen Ülkeler**: Filipinler
|
|
385
|
+
- **Para Birimleri**: PHP (Philippine Peso)
|
|
386
|
+
- **Client Oluşturma**:
|
|
387
|
+
```javascript
|
|
388
|
+
{
|
|
389
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
390
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
391
|
+
sandbox: true
|
|
392
|
+
}
|
|
393
|
+
```
|
|
394
|
+
- **createPayment Gereken Alanlar**:
|
|
395
|
+
- `amount`: Ödeme tutarı (PHP)
|
|
396
|
+
- `orderId`: Benzersiz sipariş ID
|
|
397
|
+
- `callback_link`: Callback URL
|
|
398
|
+
- `name`: Müşteri adı
|
|
399
|
+
- `email`: Müşteri email
|
|
400
|
+
|
|
401
|
+
---
|
|
402
|
+
|
|
403
|
+
### 🇻🇳 PayME (Vietnam)
|
|
404
|
+
- **Website**: https://payme.vn
|
|
405
|
+
- **Desteklenen Ülkeler**: Vietnam
|
|
406
|
+
- **Para Birimleri**: VND (Vietnamese Dong)
|
|
407
|
+
- **Client Oluşturma**:
|
|
408
|
+
```javascript
|
|
409
|
+
{
|
|
410
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
411
|
+
apiKey: 'YOUR_API_KEY',
|
|
412
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
413
|
+
}
|
|
414
|
+
```
|
|
415
|
+
- **createPayment Gereken Alanlar**:
|
|
416
|
+
- `amount`: Ödeme tutarı (VND)
|
|
417
|
+
- `orderId`: Benzersiz sipariş ID
|
|
418
|
+
- `callback_link`: Callback URL
|
|
419
|
+
- `description`: Ödeme açıklaması
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
### 🇹🇭 Omise (Tayland)
|
|
424
|
+
- **Website**: https://www.omise.co
|
|
425
|
+
- **Desteklenen Ülkeler**: Tayland
|
|
426
|
+
- **Para Birimleri**: THB (Thai Baht)
|
|
427
|
+
- **Client Oluşturma**:
|
|
428
|
+
```javascript
|
|
429
|
+
{
|
|
430
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
431
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
432
|
+
}
|
|
433
|
+
```
|
|
434
|
+
- **createPayment Gereken Alanlar**:
|
|
435
|
+
- `amount`: Ödeme tutarı (THB, satang cinsinden)
|
|
436
|
+
- `orderId`: Benzersiz sipariş ID
|
|
437
|
+
- `callback_link`: Callback URL
|
|
438
|
+
- `sourceType`: Ödeme kaynağı tipi (ör: 'promptpay')
|
|
439
|
+
- `name`: Müşteri adı
|
|
440
|
+
|
|
441
|
+
---
|
|
442
|
+
|
|
443
|
+
## Orta Doğu ve Afrika
|
|
444
|
+
|
|
445
|
+
### 🇹🇷 İyzico (Türkiye)
|
|
446
|
+
- **Website**: https://www.iyzico.com
|
|
447
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
448
|
+
- **Para Birimleri**: TRY (Turkish Lira)
|
|
449
|
+
- **Client Oluşturma**:
|
|
450
|
+
```javascript
|
|
451
|
+
{
|
|
452
|
+
apiKey: 'YOUR_API_KEY',
|
|
453
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
454
|
+
uri: 'https://sandbox-api.iyzipay.com'
|
|
455
|
+
}
|
|
456
|
+
```
|
|
457
|
+
- **createPayment Gereken Alanlar**:
|
|
458
|
+
- `amount`: Ödeme tutarı (TRY)
|
|
459
|
+
- `orderId`: Benzersiz sipariş ID
|
|
460
|
+
- `callback_link`: Callback URL
|
|
461
|
+
- `name`: Müşteri adı
|
|
462
|
+
- `surname`: Müşteri soyadı
|
|
463
|
+
- `email`: Müşteri email
|
|
464
|
+
- `phone`: Müşteri telefon
|
|
465
|
+
- `address`: Müşteri adresi
|
|
466
|
+
- `city`: Şehir
|
|
467
|
+
- `country`: Ülke
|
|
468
|
+
|
|
469
|
+
---
|
|
470
|
+
|
|
471
|
+
### 🇹🇷 PayTR (Türkiye)
|
|
472
|
+
- **Website**: https://www.paytr.com
|
|
473
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
474
|
+
- **Para Birimleri**: TRY (Turkish Lira)
|
|
475
|
+
- **Client Oluşturma**:
|
|
476
|
+
```javascript
|
|
477
|
+
{
|
|
478
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
479
|
+
merchantKey: 'YOUR_MERCHANT_KEY',
|
|
480
|
+
merchantSalt: 'YOUR_MERCHANT_SALT'
|
|
481
|
+
}
|
|
482
|
+
```
|
|
483
|
+
- **createPayment Gereken Alanlar**:
|
|
484
|
+
- `amount`: Ödeme tutarı (TRY, kuruş cinsinden)
|
|
485
|
+
- `orderId`: Benzersiz sipariş ID
|
|
486
|
+
- `callback_link`: Callback URL
|
|
487
|
+
- `name`: Müşteri adı
|
|
488
|
+
- `email`: Müşteri email
|
|
489
|
+
- `phone`: Müşteri telefon
|
|
490
|
+
- `address`: Müşteri adresi
|
|
491
|
+
|
|
492
|
+
---
|
|
493
|
+
|
|
494
|
+
### 🇹🇷 Shopier (Türkiye)
|
|
495
|
+
- **Website**: https://www.shopier.com
|
|
496
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
497
|
+
- **Para Birimleri**: TRY (Turkish Lira)
|
|
498
|
+
- **Client Oluşturma**:
|
|
499
|
+
```javascript
|
|
500
|
+
{
|
|
501
|
+
apiKey: 'YOUR_API_KEY',
|
|
502
|
+
apiSecret: 'YOUR_API_SECRET'
|
|
503
|
+
}
|
|
504
|
+
```
|
|
505
|
+
- **createPayment Gereken Alanlar**:
|
|
506
|
+
- `amount`: Ödeme tutarı (TRY)
|
|
507
|
+
- `orderId`: Benzersiz sipariş ID
|
|
508
|
+
- `callback_link`: Callback URL
|
|
509
|
+
- `name`: Ürün adı
|
|
510
|
+
- `buyer_name`: Müşteri adı
|
|
511
|
+
- `buyer_email`: Müşteri email
|
|
512
|
+
- `buyer_phone`: Müşteri telefon
|
|
513
|
+
|
|
514
|
+
---
|
|
515
|
+
|
|
516
|
+
### 🇹🇷 Papara (Türkiye)
|
|
517
|
+
- **Website**: https://www.papara.com
|
|
518
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
519
|
+
- **Para Birimleri**: TRY (Turkish Lira)
|
|
520
|
+
- **Client Oluşturma**:
|
|
521
|
+
```javascript
|
|
522
|
+
{
|
|
523
|
+
apiKey: 'YOUR_API_KEY',
|
|
524
|
+
merchantId: 'YOUR_MERCHANT_ID'
|
|
525
|
+
}
|
|
526
|
+
```
|
|
527
|
+
- **createPayment Gereken Alanlar**:
|
|
528
|
+
- `amount`: Ödeme tutarı (TRY)
|
|
529
|
+
- `orderId`: Benzersiz sipariş ID
|
|
530
|
+
- `callback_link`: Callback URL
|
|
531
|
+
- `description`: Ödeme açıklaması
|
|
532
|
+
|
|
533
|
+
---
|
|
534
|
+
|
|
535
|
+
### 🇹🇷 EsnekPos (Türkiye)
|
|
536
|
+
- **Website**: https://esnekpos.com
|
|
537
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
538
|
+
- **Para Birimleri**: TRY (Turkish Lira)
|
|
539
|
+
- **Client Oluşturma**:
|
|
540
|
+
```javascript
|
|
541
|
+
{
|
|
542
|
+
apiKey: 'YOUR_API_KEY',
|
|
543
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
544
|
+
}
|
|
545
|
+
```
|
|
546
|
+
- **createPayment Gereken Alanlar**:
|
|
547
|
+
- `amount`: Ödeme tutarı (TRY)
|
|
548
|
+
- `orderId`: Benzersiz sipariş ID
|
|
549
|
+
- `callback_link`: Callback URL
|
|
550
|
+
- `name`: Müşteri adı
|
|
551
|
+
|
|
552
|
+
---
|
|
553
|
+
|
|
554
|
+
### 🇹🇷 Paydisini (Türkiye)
|
|
555
|
+
- **Website**: https://paydisini.com
|
|
556
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
557
|
+
- **Para Birimleri**: TRY (Turkish Lira), USD, EUR
|
|
558
|
+
- **Client Oluşturma**:
|
|
559
|
+
```javascript
|
|
560
|
+
{
|
|
561
|
+
apiKey: 'YOUR_API_KEY'
|
|
562
|
+
}
|
|
563
|
+
```
|
|
564
|
+
- **createPayment Gereken Alanlar**:
|
|
565
|
+
- `amount`: Ödeme tutarı
|
|
566
|
+
- `orderId`: Benzersiz sipariş ID
|
|
567
|
+
- `callback_link`: Callback URL
|
|
568
|
+
- `name`: Müşteri adı
|
|
569
|
+
- `email`: Müşteri email
|
|
570
|
+
|
|
571
|
+
---
|
|
572
|
+
|
|
573
|
+
### 🇹🇷 PayNetTR (PayNet Türkiye)
|
|
574
|
+
- **Website**: https://paynet.com.tr
|
|
575
|
+
- **Desteklenen Ülkeler**: Türkiye
|
|
576
|
+
- **Para Birimleri**: TRY (Turkish Lira)
|
|
577
|
+
- **Client Oluşturma**:
|
|
578
|
+
```javascript
|
|
579
|
+
{
|
|
580
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
581
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
582
|
+
}
|
|
583
|
+
```
|
|
584
|
+
- **createPayment Gereken Alanlar**:
|
|
585
|
+
- `amount`: Ödeme tutarı (TRY)
|
|
586
|
+
- `orderId`: Benzersiz sipariş ID
|
|
587
|
+
- `callback_link`: Callback URL
|
|
588
|
+
- `name`: Müşteri adı
|
|
589
|
+
|
|
590
|
+
---
|
|
591
|
+
|
|
592
|
+
### 🇦🇪 PrimePayments (BAE)
|
|
593
|
+
- **Website**: https://primepayments.io
|
|
594
|
+
- **Desteklenen Ülkeler**: BAE, Orta Doğu
|
|
595
|
+
- **Para Birimleri**: AED, USD, SAR
|
|
596
|
+
- **Client Oluşturma**:
|
|
597
|
+
```javascript
|
|
598
|
+
{
|
|
599
|
+
apiKey: 'YOUR_API_KEY',
|
|
600
|
+
merchantId: 'YOUR_MERCHANT_ID'
|
|
601
|
+
}
|
|
602
|
+
```
|
|
603
|
+
- **createPayment Gereken Alanlar**:
|
|
604
|
+
- `amount`: Ödeme tutarı
|
|
605
|
+
- `orderId`: Benzersiz sipariş ID
|
|
606
|
+
- `callback_link`: Callback URL
|
|
607
|
+
- `currency`: Para birimi
|
|
608
|
+
|
|
609
|
+
---
|
|
610
|
+
|
|
611
|
+
### 🇦🇪 YallaPay (BAE)
|
|
612
|
+
- **Website**: https://yallapay.com
|
|
613
|
+
- **Desteklenen Ülkeler**: BAE, Orta Doğu
|
|
614
|
+
- **Para Birimleri**: AED, USD
|
|
615
|
+
- **Client Oluşturma**:
|
|
616
|
+
```javascript
|
|
617
|
+
{
|
|
618
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
619
|
+
apiKey: 'YOUR_API_KEY',
|
|
620
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
621
|
+
}
|
|
622
|
+
```
|
|
623
|
+
- **createPayment Gereken Alanlar**:
|
|
624
|
+
- `amount`: Ödeme tutarı
|
|
625
|
+
- `orderId`: Benzersiz sipariş ID
|
|
626
|
+
- `callback_link`: Callback URL
|
|
627
|
+
- `currency`: Para birimi
|
|
628
|
+
|
|
629
|
+
---
|
|
630
|
+
|
|
631
|
+
### 🇦🇪 NoonPayments (BAE)
|
|
632
|
+
- **Website**: https://www.noon.com
|
|
633
|
+
- **Desteklenen Ülkeler**: BAE, Suudi Arabistan
|
|
634
|
+
- **Para Birimleri**: AED, SAR
|
|
635
|
+
- **Client Oluşturma**:
|
|
636
|
+
```javascript
|
|
637
|
+
{
|
|
638
|
+
applicationId: 'YOUR_APPLICATION_ID',
|
|
639
|
+
apiKey: 'YOUR_API_KEY',
|
|
640
|
+
businessId: 'YOUR_BUSINESS_ID',
|
|
641
|
+
environment: 'sandbox'
|
|
642
|
+
}
|
|
643
|
+
```
|
|
644
|
+
- **createPayment Gereken Alanlar**:
|
|
645
|
+
- `amount`: Ödeme tutarı
|
|
646
|
+
- `orderId`: Benzersiz sipariş ID
|
|
647
|
+
- `callback_link`: Callback URL
|
|
648
|
+
- `currency`: Para birimi
|
|
649
|
+
- `name`: Müşteri adı
|
|
650
|
+
- `email`: Müşteri email
|
|
651
|
+
|
|
652
|
+
---
|
|
653
|
+
|
|
654
|
+
### 🇦🇪 🇸🇦 🇴🇲 🇯🇴 🇪🇬 PayTabs (Orta Doğu)
|
|
655
|
+
- **Website**: https://www.paytabs.com
|
|
656
|
+
- **Desteklenen Ülkeler**: BAE, Suudi Arabistan, Umman, Ürdün, Mısır
|
|
657
|
+
- **Para Birimleri**: AED, SAR, OMR, JOD, EGP, USD
|
|
658
|
+
- **Client Oluşturma**:
|
|
659
|
+
```javascript
|
|
660
|
+
{
|
|
661
|
+
profileId: 'YOUR_PROFILE_ID',
|
|
662
|
+
serverKey: 'YOUR_SERVER_KEY',
|
|
663
|
+
region: 'ARE' // ARE, SAU, OMN, JOR, EGY
|
|
664
|
+
}
|
|
665
|
+
```
|
|
666
|
+
- **createPayment Gereken Alanlar**:
|
|
667
|
+
- `amount`: Ödeme tutarı
|
|
668
|
+
- `orderId`: Benzersiz sipariş ID
|
|
669
|
+
- `callback_link`: Callback URL
|
|
670
|
+
- `currency`: Para birimi
|
|
671
|
+
- `name`: Müşteri adı
|
|
672
|
+
- `email`: Müşteri email
|
|
673
|
+
- `phone`: Müşteri telefon
|
|
674
|
+
|
|
675
|
+
---
|
|
676
|
+
|
|
677
|
+
### 🇸🇦 URWay (Suudi Arabistan)
|
|
678
|
+
- **Website**: https://www.urway.sa
|
|
679
|
+
- **Desteklenen Ülkeler**: Suudi Arabistan
|
|
680
|
+
- **Para Birimleri**: SAR (Saudi Riyal)
|
|
681
|
+
- **Client Oluşturma**:
|
|
682
|
+
```javascript
|
|
683
|
+
{
|
|
684
|
+
terminalId: 'YOUR_TERMINAL_ID',
|
|
685
|
+
password: 'YOUR_PASSWORD',
|
|
686
|
+
merchantKey: 'YOUR_MERCHANT_KEY',
|
|
687
|
+
testMode: true
|
|
688
|
+
}
|
|
689
|
+
```
|
|
690
|
+
- **createPayment Gereken Alanlar**:
|
|
691
|
+
- `amount`: Ödeme tutarı (SAR)
|
|
692
|
+
- `orderId`: Benzersiz sipariş ID
|
|
693
|
+
- `callback_link`: Callback URL
|
|
694
|
+
- `email`: Müşteri email
|
|
695
|
+
- `country`: Ülke kodu
|
|
696
|
+
- `merchantIp`: Merchant IP adresi
|
|
697
|
+
|
|
698
|
+
---
|
|
699
|
+
|
|
700
|
+
### 🇦🇿 Payriff (Azerbaycan)
|
|
701
|
+
- **Website**: https://payriff.com
|
|
702
|
+
- **Desteklenen Ülkeler**: Azerbaycan
|
|
703
|
+
- **Para Birimleri**: AZN (Azerbaijani Manat)
|
|
704
|
+
- **Client Oluşturma**:
|
|
705
|
+
```javascript
|
|
706
|
+
{
|
|
707
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
708
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
709
|
+
}
|
|
710
|
+
```
|
|
711
|
+
- **createPayment Gereken Alanlar**:
|
|
712
|
+
- `amount`: Ödeme tutarı (AZN)
|
|
713
|
+
- `orderId`: Benzersiz sipariş ID
|
|
714
|
+
- `callback_link`: Callback URL
|
|
715
|
+
- `description`: Ödeme açıklaması
|
|
716
|
+
|
|
717
|
+
---
|
|
718
|
+
|
|
719
|
+
### 🇦🇿 Epoint (Azerbaycan)
|
|
720
|
+
- **Website**: https://epoint.az
|
|
721
|
+
- **Desteklenen Ülkeler**: Azerbaycan
|
|
722
|
+
- **Para Birimleri**: AZN (Azerbaijani Manat)
|
|
723
|
+
- **Client Oluşturma**:
|
|
724
|
+
```javascript
|
|
725
|
+
{
|
|
726
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
727
|
+
privateKey: 'YOUR_PRIVATE_KEY'
|
|
728
|
+
}
|
|
729
|
+
```
|
|
730
|
+
- **createPayment Gereken Alanlar**:
|
|
731
|
+
- `amount`: Ödeme tutarı (AZN)
|
|
732
|
+
- `orderId`: Benzersiz sipariş ID
|
|
733
|
+
- `callback_link`: Callback URL
|
|
734
|
+
- `description`: Ödeme açıklaması
|
|
735
|
+
|
|
736
|
+
---
|
|
737
|
+
|
|
738
|
+
### 🇧🇩 ShurjoPay (Bangladeş)
|
|
739
|
+
- **Website**: https://shurjopay.com.bd
|
|
740
|
+
- **Desteklenen Ülkeler**: Bangladeş
|
|
741
|
+
- **Para Birimleri**: BDT (Bangladeshi Taka)
|
|
742
|
+
- **Client Oluşturma**:
|
|
743
|
+
```javascript
|
|
744
|
+
{
|
|
745
|
+
username: 'YOUR_USERNAME',
|
|
746
|
+
password: 'YOUR_PASSWORD',
|
|
747
|
+
prefix: 'YOUR_PREFIX',
|
|
748
|
+
sandbox: true
|
|
749
|
+
}
|
|
750
|
+
```
|
|
751
|
+
- **createPayment Gereken Alanlar**:
|
|
752
|
+
- `amount`: Ödeme tutarı (BDT)
|
|
753
|
+
- `orderId`: Benzersiz sipariş ID
|
|
754
|
+
- `callback_link`: Callback URL
|
|
755
|
+
- `name`: Müşteri adı
|
|
756
|
+
- `phone`: Müşteri telefon
|
|
757
|
+
- `city`: Şehir
|
|
758
|
+
- `address`: Adres
|
|
759
|
+
|
|
760
|
+
---
|
|
761
|
+
|
|
762
|
+
### 🇿🇦 PaySpace (Güney Afrika)
|
|
763
|
+
- **Website**: https://www.payspace.com
|
|
764
|
+
- **Desteklenen Ülkeler**: Güney Afrika
|
|
765
|
+
- **Para Birimleri**: ZAR (South African Rand)
|
|
766
|
+
- **Client Oluşturma**:
|
|
767
|
+
```javascript
|
|
768
|
+
{
|
|
769
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
770
|
+
apiKey: 'YOUR_API_KEY'
|
|
771
|
+
}
|
|
772
|
+
```
|
|
773
|
+
- **createPayment Gereken Alanlar**:
|
|
774
|
+
- `amount`: Ödeme tutarı (ZAR)
|
|
775
|
+
- `orderId`: Benzersiz sipariş ID
|
|
776
|
+
- `callback_link`: Callback URL
|
|
777
|
+
- `description`: Ödeme açıklaması
|
|
778
|
+
|
|
779
|
+
---
|
|
780
|
+
|
|
781
|
+
### 🇧🇯 FedaPay (Benin)
|
|
782
|
+
- **Website**: https://fedapay.com
|
|
783
|
+
- **Desteklenen Ülkeler**: Benin, Batı Afrika
|
|
784
|
+
- **Para Birimleri**: XOF (West African CFA Franc)
|
|
785
|
+
- **Client Oluşturma**:
|
|
786
|
+
```javascript
|
|
787
|
+
{
|
|
788
|
+
apiKey: 'YOUR_API_KEY',
|
|
789
|
+
sandbox: true
|
|
790
|
+
}
|
|
791
|
+
```
|
|
792
|
+
- **createPayment Gereken Alanlar**:
|
|
793
|
+
- `amount`: Ödeme tutarı (XOF)
|
|
794
|
+
- `orderId`: Benzersiz sipariş ID
|
|
795
|
+
- `callback_link`: Callback URL
|
|
796
|
+
- `description`: Ödeme açıklaması
|
|
797
|
+
- `name`: Müşteri adı
|
|
798
|
+
- `email`: Müşteri email
|
|
799
|
+
|
|
800
|
+
---
|
|
801
|
+
|
|
802
|
+
### 🇹🇳 Konnect (Tunus)
|
|
803
|
+
- **Website**: https://konnect.network
|
|
804
|
+
- **Desteklenen Ülkeler**: Tunus
|
|
805
|
+
- **Para Birimleri**: TND (Tunisian Dinar)
|
|
806
|
+
- **Client Oluşturma**:
|
|
807
|
+
```javascript
|
|
808
|
+
{
|
|
809
|
+
apiKey: 'YOUR_API_KEY',
|
|
810
|
+
receiverId: 'YOUR_RECEIVER_ID'
|
|
811
|
+
}
|
|
812
|
+
```
|
|
813
|
+
- **createPayment Gereken Alanlar**:
|
|
814
|
+
- `amount`: Ödeme tutarı (TND, millime cinsinden)
|
|
815
|
+
- `orderId`: Benzersiz sipariş ID
|
|
816
|
+
- `callback_link`: Callback URL
|
|
817
|
+
- `description`: Ödeme açıklaması
|
|
818
|
+
|
|
819
|
+
---
|
|
820
|
+
|
|
821
|
+
### 🇲🇦 YouCanPay (Fas)
|
|
822
|
+
- **Website**: https://youcanpay.com
|
|
823
|
+
- **Desteklenen Ülkeler**: Fas
|
|
824
|
+
- **Para Birimleri**: MAD (Moroccan Dirham)
|
|
825
|
+
- **Client Oluşturma**:
|
|
826
|
+
```javascript
|
|
827
|
+
{
|
|
828
|
+
privateKey: 'YOUR_PRIVATE_KEY',
|
|
829
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
830
|
+
sandbox: true
|
|
831
|
+
}
|
|
832
|
+
```
|
|
833
|
+
- **createPayment Gereken Alanlar**:
|
|
834
|
+
- `amount`: Ödeme tutarı (MAD)
|
|
835
|
+
- `orderId`: Benzersiz sipariş ID
|
|
836
|
+
- `callback_link`: Callback URL
|
|
837
|
+
- `name`: Müşteri adı
|
|
838
|
+
- `email`: Müşteri email
|
|
839
|
+
- `phone`: Müşteri telefon
|
|
840
|
+
|
|
841
|
+
---
|
|
842
|
+
|
|
843
|
+
## Avrupa
|
|
844
|
+
|
|
845
|
+
### 🇧🇬 ePay (Bulgaristan)
|
|
846
|
+
- **Website**: https://www.epay.bg
|
|
847
|
+
- **Desteklenen Ülkeler**: Bulgaristan
|
|
848
|
+
- **Para Birimleri**: BGN (Bulgarian Lev)
|
|
849
|
+
- **Client Oluşturma**:
|
|
850
|
+
```javascript
|
|
851
|
+
{
|
|
852
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
853
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
854
|
+
}
|
|
855
|
+
```
|
|
856
|
+
- **createPayment Gereken Alanlar**:
|
|
857
|
+
- `amount`: Ödeme tutarı (BGN)
|
|
858
|
+
- `orderId`: Benzersiz sipariş ID
|
|
859
|
+
- `callback_link`: Callback URL
|
|
860
|
+
- `description`: Ödeme açıklaması
|
|
861
|
+
|
|
862
|
+
---
|
|
863
|
+
|
|
864
|
+
### 🇲🇩 PayNet (Moldova)
|
|
865
|
+
- **Website**: https://www.paynet.md
|
|
866
|
+
- **Desteklenen Ülkeler**: Moldova
|
|
867
|
+
- **Para Birimleri**: MDL (Moldovan Leu)
|
|
868
|
+
- **Client Oluşturma**:
|
|
869
|
+
```javascript
|
|
870
|
+
{
|
|
871
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
872
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
873
|
+
}
|
|
874
|
+
```
|
|
875
|
+
- **createPayment Gereken Alanlar**:
|
|
876
|
+
- `amount`: Ödeme tutarı (MDL)
|
|
877
|
+
- `orderId`: Benzersiz sipariş ID
|
|
878
|
+
- `callback_link`: Callback URL
|
|
879
|
+
- `description`: Ödeme açıklaması
|
|
880
|
+
|
|
881
|
+
---
|
|
882
|
+
|
|
883
|
+
### 🇷🇺 YooKassa (Rusya)
|
|
884
|
+
- **Website**: https://yookassa.ru
|
|
885
|
+
- **Desteklenen Ülkeler**: Rusya
|
|
886
|
+
- **Para Birimleri**: RUB (Russian Ruble)
|
|
887
|
+
- **Client Oluşturma**:
|
|
888
|
+
```javascript
|
|
889
|
+
{
|
|
890
|
+
shopId: 'YOUR_SHOP_ID',
|
|
891
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
892
|
+
}
|
|
893
|
+
```
|
|
894
|
+
- **createPayment Gereken Alanlar**:
|
|
895
|
+
- `amount`: Ödeme tutarı (RUB)
|
|
896
|
+
- `orderId`: Benzersiz sipariş ID
|
|
897
|
+
- `callback_link`: Callback URL
|
|
898
|
+
- `description`: Ödeme açıklaması
|
|
899
|
+
- `email`: Müşteri email
|
|
900
|
+
- `phone`: Müşteri telefon
|
|
901
|
+
|
|
902
|
+
---
|
|
903
|
+
|
|
904
|
+
### 🇷🇺 FreeKassa (Rusya)
|
|
905
|
+
- **Website**: https://freekassa.ru
|
|
906
|
+
- **Desteklenen Ülkeler**: Rusya
|
|
907
|
+
- **Para Birimleri**: RUB (Russian Ruble)
|
|
908
|
+
- **Client Oluşturma**:
|
|
909
|
+
```javascript
|
|
910
|
+
{
|
|
911
|
+
shopId: 'YOUR_SHOP_ID',
|
|
912
|
+
secretKey1: 'YOUR_SECRET_KEY_1',
|
|
913
|
+
secretKey2: 'YOUR_SECRET_KEY_2'
|
|
914
|
+
}
|
|
915
|
+
```
|
|
916
|
+
- **createPayment Gereken Alanlar**:
|
|
917
|
+
- `amount`: Ödeme tutarı (RUB)
|
|
918
|
+
- `orderId`: Benzersiz sipariş ID
|
|
919
|
+
- `currency`: Para birimi
|
|
920
|
+
- `email`: Müşteri email
|
|
921
|
+
- `name`: Müşteri adı
|
|
922
|
+
|
|
923
|
+
---
|
|
924
|
+
|
|
925
|
+
### 🇷🇺 Unitpay (Rusya)
|
|
926
|
+
- **Website**: https://unitpay.ru
|
|
927
|
+
- **Desteklenen Ülkeler**: Rusya
|
|
928
|
+
- **Para Birimleri**: RUB (Russian Ruble)
|
|
929
|
+
- **Client Oluşturma**:
|
|
930
|
+
```javascript
|
|
931
|
+
{
|
|
932
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
933
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
934
|
+
}
|
|
935
|
+
```
|
|
936
|
+
- **createPayment Gereken Alanlar**:
|
|
937
|
+
- `amount`: Ödeme tutarı (RUB)
|
|
938
|
+
- `orderId`: Benzersiz sipariş ID
|
|
939
|
+
- `callback_link`: Callback URL
|
|
940
|
+
- `account`: Hesap bilgisi
|
|
941
|
+
- `description`: Ödeme açıklaması
|
|
942
|
+
|
|
943
|
+
---
|
|
944
|
+
|
|
945
|
+
## Latin Amerika
|
|
946
|
+
|
|
947
|
+
### 🇧🇷 PicPay (Brezilya)
|
|
948
|
+
- **Website**: https://www.picpay.com
|
|
949
|
+
- **Desteklenen Ülkeler**: Brezilya
|
|
950
|
+
- **Para Birimleri**: BRL (Brazilian Real)
|
|
951
|
+
- **Client Oluşturma**:
|
|
952
|
+
```javascript
|
|
953
|
+
{
|
|
954
|
+
token: 'YOUR_TOKEN',
|
|
955
|
+
sellerToken: 'YOUR_SELLER_TOKEN'
|
|
956
|
+
}
|
|
957
|
+
```
|
|
958
|
+
- **createPayment Gereken Alanlar**:
|
|
959
|
+
- `amount`: Ödeme tutarı (BRL)
|
|
960
|
+
- `orderId`: Benzersiz sipariş ID
|
|
961
|
+
- `callback_link`: Callback URL
|
|
962
|
+
- `firstName`: Müşteri adı
|
|
963
|
+
- `lastName`: Müşteri soyadı
|
|
964
|
+
- `email`: Müşteri email
|
|
965
|
+
- `document`: CPF numarası
|
|
966
|
+
- `phone`: Müşteri telefon
|
|
967
|
+
|
|
968
|
+
---
|
|
969
|
+
|
|
970
|
+
### 🇲🇽 🇨🇴 🇵🇪 🇦🇷 PayU Latam (Latin Amerika)
|
|
971
|
+
- **Website**: https://www.payu.com
|
|
972
|
+
- **Desteklenen Ülkeler**: Meksika, Kolombiya, Peru, Arjantin, Şili, Panama
|
|
973
|
+
- **Para Birimleri**: MXN, COP, PEN, ARS, CLP, USD
|
|
974
|
+
- **Client Oluşturma**:
|
|
975
|
+
```javascript
|
|
976
|
+
{
|
|
977
|
+
apiKey: 'YOUR_API_KEY',
|
|
978
|
+
apiLogin: 'YOUR_API_LOGIN',
|
|
979
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
980
|
+
accountId: 'YOUR_ACCOUNT_ID',
|
|
981
|
+
sandbox: true
|
|
982
|
+
}
|
|
983
|
+
```
|
|
984
|
+
- **createPayment Gereken Alanlar**:
|
|
985
|
+
- `amount`: Ödeme tutarı
|
|
986
|
+
- `orderId`: Benzersiz sipariş ID
|
|
987
|
+
- `callback_link`: Callback URL
|
|
988
|
+
- `currency`: Para birimi
|
|
989
|
+
- `description`: Ödeme açıklaması
|
|
990
|
+
- `name`: Müşteri adı
|
|
991
|
+
- `email`: Müşteri email
|
|
992
|
+
|
|
993
|
+
---
|
|
994
|
+
|
|
995
|
+
## Global Ödeme Sistemleri
|
|
996
|
+
|
|
997
|
+
### 🌐 PayPal (Global)
|
|
998
|
+
- **Website**: https://www.paypal.com
|
|
999
|
+
- **Desteklenen Ülkeler**: 200+ ülke
|
|
1000
|
+
- **Para Birimleri**: 25+ para birimi (USD, EUR, GBP, vb.)
|
|
1001
|
+
- **Client Oluşturma**:
|
|
1002
|
+
```javascript
|
|
1003
|
+
{
|
|
1004
|
+
clientId: 'YOUR_CLIENT_ID',
|
|
1005
|
+
clientSecret: 'YOUR_CLIENT_SECRET',
|
|
1006
|
+
mode: 'sandbox'
|
|
1007
|
+
}
|
|
1008
|
+
```
|
|
1009
|
+
- **createPayment Gereken Alanlar**:
|
|
1010
|
+
- `amount`: Ödeme tutarı
|
|
1011
|
+
- `currency`: Para birimi
|
|
1012
|
+
- `callback_link`: Callback URL
|
|
1013
|
+
- `description`: Ödeme açıklaması
|
|
1014
|
+
|
|
1015
|
+
---
|
|
1016
|
+
|
|
1017
|
+
### 🌐 Amazon Pay (Global)
|
|
1018
|
+
- **Website**: https://pay.amazon.com
|
|
1019
|
+
- **Desteklenen Ülkeler**: ABD, AB, Japonya, Hindistan
|
|
1020
|
+
- **Para Birimleri**: USD, EUR, GBP, JPY, INR
|
|
1021
|
+
- **Client Oluşturma**:
|
|
1022
|
+
```javascript
|
|
1023
|
+
{
|
|
1024
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
1025
|
+
accessKey: 'YOUR_ACCESS_KEY',
|
|
1026
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
1027
|
+
region: 'us', // us, eu, jp
|
|
1028
|
+
sandbox: true
|
|
1029
|
+
}
|
|
1030
|
+
```
|
|
1031
|
+
- **createPayment Gereken Alanlar**:
|
|
1032
|
+
- `amount`: Ödeme tutarı
|
|
1033
|
+
- `currency`: Para birimi
|
|
1034
|
+
- `callback_link`: Callback URL
|
|
1035
|
+
- `chargePermissionType`: İzin tipi
|
|
1036
|
+
|
|
1037
|
+
---
|
|
1038
|
+
|
|
1039
|
+
### 🌐 Paddle (Global SaaS Billing)
|
|
1040
|
+
- **Website**: https://www.paddle.com
|
|
1041
|
+
- **Desteklenen Ülkeler**: 245+ ülke
|
|
1042
|
+
- **Para Birimleri**: 20+ para birimi
|
|
1043
|
+
- **Client Oluşturma**:
|
|
1044
|
+
```javascript
|
|
1045
|
+
{
|
|
1046
|
+
vendorId: 'YOUR_VENDOR_ID',
|
|
1047
|
+
apiKey: 'YOUR_API_KEY',
|
|
1048
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
1049
|
+
sandbox: true
|
|
1050
|
+
}
|
|
1051
|
+
```
|
|
1052
|
+
- **createPayment Gereken Alanlar**:
|
|
1053
|
+
- `amount`: Ödeme tutarı
|
|
1054
|
+
- `currency`: Para birimi
|
|
1055
|
+
- `title`: Ürün başlığı
|
|
1056
|
+
- `callback_link`: Webhook URL
|
|
1057
|
+
|
|
1058
|
+
---
|
|
1059
|
+
|
|
1060
|
+
### 🌐 Checkout.com (Global)
|
|
1061
|
+
- **Website**: https://www.checkout.com
|
|
1062
|
+
- **Desteklenen Ülkeler**: 150+ ülke
|
|
1063
|
+
- **Para Birimleri**: 150+ para birimi
|
|
1064
|
+
- **Client Oluşturma**:
|
|
1065
|
+
```javascript
|
|
1066
|
+
{
|
|
1067
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
1068
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
1069
|
+
environment: 'sandbox'
|
|
1070
|
+
}
|
|
1071
|
+
```
|
|
1072
|
+
- **createPayment Gereken Alanlar**:
|
|
1073
|
+
- `amount`: Ödeme tutarı (en küçük birim cinsinden)
|
|
1074
|
+
- `currency`: Para birimi
|
|
1075
|
+
- `callback_link`: Callback URL
|
|
1076
|
+
- `reference`: Sipariş referansı
|
|
1077
|
+
|
|
1078
|
+
---
|
|
1079
|
+
|
|
1080
|
+
### 🌐 2Checkout (Verifone) (Global)
|
|
1081
|
+
- **Website**: https://www.2checkout.com
|
|
1082
|
+
- **Desteklenen Ülkeler**: 200+ ülke
|
|
1083
|
+
- **Para Birimleri**: 87 para birimi
|
|
1084
|
+
- **Client Oluşturma**:
|
|
1085
|
+
```javascript
|
|
1086
|
+
{
|
|
1087
|
+
merchantCode: 'YOUR_MERCHANT_CODE',
|
|
1088
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
1089
|
+
sandbox: true
|
|
1090
|
+
}
|
|
1091
|
+
```
|
|
1092
|
+
- **createPayment Gereken Alanlar**:
|
|
1093
|
+
- `amount`: Ödeme tutarı
|
|
1094
|
+
- `currency`: Para birimi
|
|
1095
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1096
|
+
- `callback_link`: Callback URL
|
|
1097
|
+
- `name`: Müşteri adı
|
|
1098
|
+
- `email`: Müşteri email
|
|
1099
|
+
|
|
1100
|
+
---
|
|
1101
|
+
|
|
1102
|
+
### 🌐 Payssion (Global)
|
|
1103
|
+
- **Website**: https://www.payssion.com
|
|
1104
|
+
- **Desteklenen Ülkeler**: 200+ ülke
|
|
1105
|
+
- **Para Birimleri**: 100+ para birimi
|
|
1106
|
+
- **Ödeme Yöntemleri**: 300+ yerel ödeme yöntemi
|
|
1107
|
+
- **Client Oluşturma**:
|
|
1108
|
+
```javascript
|
|
1109
|
+
{
|
|
1110
|
+
apiKey: 'YOUR_API_KEY',
|
|
1111
|
+
secretKey: 'YOUR_SECRET_KEY',
|
|
1112
|
+
sandbox: true
|
|
1113
|
+
}
|
|
1114
|
+
```
|
|
1115
|
+
- **createPayment Gereken Alanlar**:
|
|
1116
|
+
- `amount`: Ödeme tutarı
|
|
1117
|
+
- `currency`: Para birimi
|
|
1118
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1119
|
+
- `paymentMethod`: Ödeme yöntemi kodu
|
|
1120
|
+
- `callback_link`: Callback URL
|
|
1121
|
+
|
|
1122
|
+
---
|
|
1123
|
+
|
|
1124
|
+
### 🌐 PayOP (Global)
|
|
1125
|
+
- **Website**: https://payop.com
|
|
1126
|
+
- **Desteklenen Ülkeler**: 170+ ülke
|
|
1127
|
+
- **Para Birimleri**: 150+ para birimi
|
|
1128
|
+
- **Client Oluşturma**:
|
|
1129
|
+
```javascript
|
|
1130
|
+
{
|
|
1131
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
1132
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
1133
|
+
}
|
|
1134
|
+
```
|
|
1135
|
+
- **createPayment Gereken Alanlar**:
|
|
1136
|
+
- `amount`: Ödeme tutarı
|
|
1137
|
+
- `currency`: Para birimi
|
|
1138
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1139
|
+
- `callback_link`: Callback URL
|
|
1140
|
+
- `description`: Ödeme açıklaması
|
|
1141
|
+
|
|
1142
|
+
---
|
|
1143
|
+
|
|
1144
|
+
### 🌐 Paymentwall (Global)
|
|
1145
|
+
- **Website**: https://www.paymentwall.com
|
|
1146
|
+
- **Desteklenen Ülkeler**: 200+ ülke
|
|
1147
|
+
- **Para Birimleri**: 150+ para birimi
|
|
1148
|
+
- **Ödeme Yöntemleri**: 150+ ödeme yöntemi
|
|
1149
|
+
- **Client Oluşturma**:
|
|
1150
|
+
```javascript
|
|
1151
|
+
{
|
|
1152
|
+
apiKey: 'YOUR_API_KEY',
|
|
1153
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
1154
|
+
}
|
|
1155
|
+
```
|
|
1156
|
+
- **createPayment Gereken Alanlar**:
|
|
1157
|
+
- `amount`: Ödeme tutarı
|
|
1158
|
+
- `currency`: Para birimi
|
|
1159
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1160
|
+
- `description`: Ödeme açıklaması
|
|
1161
|
+
- `email`: Müşteri email
|
|
1162
|
+
|
|
1163
|
+
---
|
|
1164
|
+
|
|
1165
|
+
### 🌐 Paysend (Global)
|
|
1166
|
+
- **Website**: https://www.paysend.com
|
|
1167
|
+
- **Desteklenen Ülkeler**: 170+ ülke
|
|
1168
|
+
- **Para Birimleri**: 100+ para birimi
|
|
1169
|
+
- **Client Oluşturma**:
|
|
1170
|
+
```javascript
|
|
1171
|
+
{
|
|
1172
|
+
apiKey: 'YOUR_API_KEY',
|
|
1173
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
1174
|
+
}
|
|
1175
|
+
```
|
|
1176
|
+
- **createPayment Gereken Alanlar**:
|
|
1177
|
+
- `amount`: Ödeme tutarı
|
|
1178
|
+
- `currency`: Para birimi
|
|
1179
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1180
|
+
- `recipientCountry`: Alıcı ülke
|
|
1181
|
+
|
|
1182
|
+
---
|
|
1183
|
+
|
|
1184
|
+
### 🌐 Payoneer (Global)
|
|
1185
|
+
- **Website**: https://www.payoneer.com
|
|
1186
|
+
- **Desteklenen Ülkeler**: 200+ ülke
|
|
1187
|
+
- **Para Birimleri**: 150+ para birimi
|
|
1188
|
+
- **Client Oluşturma**:
|
|
1189
|
+
```javascript
|
|
1190
|
+
{
|
|
1191
|
+
programId: 'YOUR_PROGRAM_ID',
|
|
1192
|
+
username: 'YOUR_USERNAME',
|
|
1193
|
+
password: 'YOUR_PASSWORD',
|
|
1194
|
+
sandbox: true
|
|
1195
|
+
}
|
|
1196
|
+
```
|
|
1197
|
+
- **createPayment Gereken Alanlar**:
|
|
1198
|
+
- `amount`: Ödeme tutarı
|
|
1199
|
+
- `currency`: Para birimi
|
|
1200
|
+
- `payeeId`: Alıcı ID
|
|
1201
|
+
- `description`: Ödeme açıklaması
|
|
1202
|
+
|
|
1203
|
+
---
|
|
1204
|
+
|
|
1205
|
+
### 🌐 PortWallet (Global)
|
|
1206
|
+
- **Website**: https://portwallet.com
|
|
1207
|
+
- **Desteklenen Ülkeler**: Global
|
|
1208
|
+
- **Para Birimleri**: USD, EUR, GBP, TRY
|
|
1209
|
+
- **Client Oluşturma**:
|
|
1210
|
+
```javascript
|
|
1211
|
+
{
|
|
1212
|
+
apiKey: 'YOUR_API_KEY',
|
|
1213
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
1214
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
1215
|
+
}
|
|
1216
|
+
```
|
|
1217
|
+
- **createPayment Gereken Alanlar**:
|
|
1218
|
+
- `amount`: Ödeme tutarı
|
|
1219
|
+
- `currency`: Para birimi
|
|
1220
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1221
|
+
- `callback_link`: Callback URL
|
|
1222
|
+
|
|
1223
|
+
---
|
|
1224
|
+
|
|
1225
|
+
## Kripto Para Ödeme Sistemleri
|
|
1226
|
+
|
|
1227
|
+
### ₿ Plisio
|
|
1228
|
+
- **Website**: https://plisio.net
|
|
1229
|
+
- **Desteklenen Ülkeler**: Global
|
|
1230
|
+
- **Kripto Paralar**: 20+ (Bitcoin, Ethereum, USDT, Litecoin, Monero, vb.)
|
|
1231
|
+
- **Client Oluşturma**:
|
|
1232
|
+
```javascript
|
|
1233
|
+
{
|
|
1234
|
+
apiKey: 'YOUR_API_KEY'
|
|
1235
|
+
}
|
|
1236
|
+
```
|
|
1237
|
+
- **createPayment Gereken Alanlar**:
|
|
1238
|
+
- `amount`: Ödeme tutarı
|
|
1239
|
+
- `currency`: Fiat para birimi (USD, EUR, vb.)
|
|
1240
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1241
|
+
- `callback_link`: Callback URL
|
|
1242
|
+
- `email`: Müşteri email (opsiyonel)
|
|
1243
|
+
|
|
1244
|
+
---
|
|
1245
|
+
|
|
1246
|
+
### ₿ CoinPayments
|
|
1247
|
+
- **Website**: https://www.coinpayments.net
|
|
1248
|
+
- **Desteklenen Ülkeler**: Global
|
|
1249
|
+
- **Kripto Paralar**: 2000+ kripto para
|
|
1250
|
+
- **Client Oluşturma**:
|
|
1251
|
+
```javascript
|
|
1252
|
+
{
|
|
1253
|
+
publicKey: 'YOUR_PUBLIC_KEY',
|
|
1254
|
+
privateKey: 'YOUR_PRIVATE_KEY',
|
|
1255
|
+
ipnSecret: 'YOUR_IPN_SECRET'
|
|
1256
|
+
}
|
|
1257
|
+
```
|
|
1258
|
+
- **createPayment Gereken Alanlar**:
|
|
1259
|
+
- `amount`: Ödeme tutarı
|
|
1260
|
+
- `currency1`: Fiat para birimi
|
|
1261
|
+
- `currency2`: Kripto para (BTC, ETH, vb.)
|
|
1262
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1263
|
+
- `callback_link`: IPN URL
|
|
1264
|
+
|
|
1265
|
+
---
|
|
1266
|
+
|
|
1267
|
+
### ₿ Cryptomus
|
|
1268
|
+
- **Website**: https://cryptomus.com
|
|
1269
|
+
- **Desteklenen Ülkeler**: Global
|
|
1270
|
+
- **Kripto Paralar**: 20+ kripto para
|
|
1271
|
+
- **Client Oluşturma**:
|
|
1272
|
+
```javascript
|
|
1273
|
+
{
|
|
1274
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
1275
|
+
apiKey: 'YOUR_API_KEY'
|
|
1276
|
+
}
|
|
1277
|
+
```
|
|
1278
|
+
- **createPayment Gereken Alanlar**:
|
|
1279
|
+
- `amount`: Ödeme tutarı (USD)
|
|
1280
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1281
|
+
- `callback_link`: Callback URL
|
|
1282
|
+
|
|
1283
|
+
---
|
|
1284
|
+
|
|
1285
|
+
### ₿ Payeer
|
|
1286
|
+
- **Website**: https://payeer.com
|
|
1287
|
+
- **Desteklenen Ülkeler**: Global
|
|
1288
|
+
- **Para Birimleri**: USD, EUR, RUB + Kripto paralar
|
|
1289
|
+
- **Client Oluşturma**:
|
|
1290
|
+
```javascript
|
|
1291
|
+
{
|
|
1292
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
1293
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
1294
|
+
}
|
|
1295
|
+
```
|
|
1296
|
+
- **createPayment Gereken Alanlar**:
|
|
1297
|
+
- `amount`: Ödeme tutarı
|
|
1298
|
+
- `currency`: Para birimi
|
|
1299
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1300
|
+
- `callback_link`: Callback URL
|
|
1301
|
+
- `description`: Ödeme açıklaması
|
|
1302
|
+
|
|
1303
|
+
---
|
|
1304
|
+
|
|
1305
|
+
### ₿ Anypay
|
|
1306
|
+
- **Website**: https://anypay.io
|
|
1307
|
+
- **Desteklenen Ülkeler**: Global
|
|
1308
|
+
- **Kripto Paralar**: Bitcoin, Bitcoin Cash, Dash, Litecoin
|
|
1309
|
+
- **Client Oluşturma**:
|
|
1310
|
+
```javascript
|
|
1311
|
+
{
|
|
1312
|
+
apiKey: 'YOUR_API_KEY'
|
|
1313
|
+
}
|
|
1314
|
+
```
|
|
1315
|
+
- **createPayment Gereken Alanlar**:
|
|
1316
|
+
- `amount`: Ödeme tutarı
|
|
1317
|
+
- `currency`: Para birimi
|
|
1318
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1319
|
+
- `callback_link`: Webhook URL
|
|
1320
|
+
|
|
1321
|
+
---
|
|
1322
|
+
|
|
1323
|
+
### ₿ NowPayments
|
|
1324
|
+
- **Website**: https://nowpayments.io
|
|
1325
|
+
- **Desteklenen Ülkeler**: Global
|
|
1326
|
+
- **Kripto Paralar**: 150+ kripto para
|
|
1327
|
+
- **Client Oluşturma**:
|
|
1328
|
+
```javascript
|
|
1329
|
+
{
|
|
1330
|
+
apiKey: 'YOUR_API_KEY'
|
|
1331
|
+
}
|
|
1332
|
+
```
|
|
1333
|
+
- **createPayment Gereken Alanlar**:
|
|
1334
|
+
- `amount`: Ödeme tutarı
|
|
1335
|
+
- `currency`: Fiat para birimi
|
|
1336
|
+
- `payCurrency`: Kripto para
|
|
1337
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1338
|
+
- `callback_link`: IPN callback URL
|
|
1339
|
+
|
|
1340
|
+
---
|
|
1341
|
+
|
|
1342
|
+
### ₿ Heleket
|
|
1343
|
+
- **Website**: https://heleket.com
|
|
1344
|
+
- **Desteklenen Ülkeler**: Global
|
|
1345
|
+
- **Kripto Paralar**: Bitcoin, Ethereum, USDT, vb.
|
|
1346
|
+
- **Client Oluşturma**:
|
|
1347
|
+
```javascript
|
|
1348
|
+
{
|
|
1349
|
+
apiKey: 'YOUR_API_KEY',
|
|
1350
|
+
merchantId: 'YOUR_MERCHANT_ID'
|
|
1351
|
+
}
|
|
1352
|
+
```
|
|
1353
|
+
- **createPayment Gereken Alanlar**:
|
|
1354
|
+
- `amount`: Ödeme tutarı
|
|
1355
|
+
- `currency`: Para birimi
|
|
1356
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1357
|
+
- `callback_link`: Callback URL
|
|
1358
|
+
|
|
1359
|
+
---
|
|
1360
|
+
|
|
1361
|
+
### ₿ BitPay
|
|
1362
|
+
- **Website**: https://bitpay.com
|
|
1363
|
+
- **Desteklenen Ülkeler**: Global
|
|
1364
|
+
- **Kripto Paralar**: Bitcoin, Bitcoin Cash, Ethereum, USDC, GUSD, PAX, BUSD, Dogecoin, Litecoin
|
|
1365
|
+
- **Client Oluşturma**:
|
|
1366
|
+
```javascript
|
|
1367
|
+
{
|
|
1368
|
+
privateKey: 'YOUR_PRIVATE_KEY',
|
|
1369
|
+
merchantToken: 'YOUR_MERCHANT_TOKEN',
|
|
1370
|
+
environment: 'test'
|
|
1371
|
+
}
|
|
1372
|
+
```
|
|
1373
|
+
- **createPayment Gereken Alanlar**:
|
|
1374
|
+
- `amount`: Ödeme tutarı
|
|
1375
|
+
- `currency`: Fiat para birimi
|
|
1376
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1377
|
+
- `callback_link`: Notification URL
|
|
1378
|
+
|
|
1379
|
+
---
|
|
1380
|
+
|
|
1381
|
+
### ₿ CoinGate
|
|
1382
|
+
- **Website**: https://coingate.com
|
|
1383
|
+
- **Desteklenen Ülkeler**: Global
|
|
1384
|
+
- **Kripto Paralar**: 70+ kripto para, Lightning Network
|
|
1385
|
+
- **Client Oluşturma**:
|
|
1386
|
+
```javascript
|
|
1387
|
+
{
|
|
1388
|
+
apiKey: 'YOUR_API_KEY',
|
|
1389
|
+
environment: 'sandbox'
|
|
1390
|
+
}
|
|
1391
|
+
```
|
|
1392
|
+
- **createPayment Gereken Alanlar**:
|
|
1393
|
+
- `amount`: Ödeme tutarı
|
|
1394
|
+
- `currency`: Para birimi
|
|
1395
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1396
|
+
- `callback_link`: Callback URL
|
|
1397
|
+
- `title`: Sipariş başlığı
|
|
1398
|
+
|
|
1399
|
+
---
|
|
1400
|
+
|
|
1401
|
+
### ₿ Volet
|
|
1402
|
+
- **Website**: https://volet.com
|
|
1403
|
+
- **Desteklenen Ülkeler**: Global
|
|
1404
|
+
- **Para Birimleri**: Kripto + Fiat paralar
|
|
1405
|
+
- **Client Oluşturma**:
|
|
1406
|
+
```javascript
|
|
1407
|
+
{
|
|
1408
|
+
merchantId: 'YOUR_MERCHANT_ID',
|
|
1409
|
+
apiKey: 'YOUR_API_KEY',
|
|
1410
|
+
secretKey: 'YOUR_SECRET_KEY'
|
|
1411
|
+
}
|
|
1412
|
+
```
|
|
1413
|
+
- **createPayment Gereken Alanlar**:
|
|
1414
|
+
- `amount`: Ödeme tutarı
|
|
1415
|
+
- `currency`: Para birimi
|
|
1416
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1417
|
+
- `callback_link`: Callback URL
|
|
1418
|
+
|
|
1419
|
+
---
|
|
1420
|
+
|
|
1421
|
+
### ₿ Coinbase Commerce
|
|
1422
|
+
- **Website**: https://commerce.coinbase.com
|
|
1423
|
+
- **Desteklenen Ülkeler**: Global
|
|
1424
|
+
- **Kripto Paralar**: Bitcoin, Bitcoin Cash, Ethereum, Litecoin, USDC, DAI
|
|
1425
|
+
- **Client Oluşturma**:
|
|
1426
|
+
```javascript
|
|
1427
|
+
{
|
|
1428
|
+
apiKey: 'YOUR_API_KEY',
|
|
1429
|
+
webhookSecret: 'YOUR_WEBHOOK_SECRET'
|
|
1430
|
+
}
|
|
1431
|
+
```
|
|
1432
|
+
- **createPayment Gereken Alanlar**:
|
|
1433
|
+
- `amount`: Ödeme tutarı
|
|
1434
|
+
- `currency`: Fiat para birimi (USD, EUR, vb.)
|
|
1435
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1436
|
+
- `name`: Ödeme açıklaması
|
|
1437
|
+
- `pricingType`: 'fixed_price' veya 'no_price'
|
|
1438
|
+
|
|
1439
|
+
---
|
|
1440
|
+
|
|
1441
|
+
### ₿ Perfect Money
|
|
1442
|
+
- **Website**: https://perfectmoney.com
|
|
1443
|
+
- **Desteklenen Ülkeler**: Global
|
|
1444
|
+
- **Para Birimleri**: USD, EUR, Altın (e-currency)
|
|
1445
|
+
- **Client Oluşturma**:
|
|
1446
|
+
```javascript
|
|
1447
|
+
{
|
|
1448
|
+
accountId: 'YOUR_ACCOUNT_ID',
|
|
1449
|
+
passPhrase: 'YOUR_PASSPHRASE',
|
|
1450
|
+
alternatePassPhrase: 'YOUR_ALTERNATE_PASSPHRASE'
|
|
1451
|
+
}
|
|
1452
|
+
```
|
|
1453
|
+
- **createPayment Gereken Alanlar**:
|
|
1454
|
+
- `amount`: Ödeme tutarı
|
|
1455
|
+
- `currency`: Para birimi (USD, EUR, Gold)
|
|
1456
|
+
- `orderId`: Benzersiz sipariş ID
|
|
1457
|
+
- `callback_link`: Status URL
|
|
1458
|
+
|
|
1459
|
+
---
|
|
1460
|
+
|
|
1461
|
+
## Özet İstatistikler
|
|
1462
|
+
|
|
1463
|
+
### Bölgesel Dağılım
|
|
1464
|
+
- **Asya-Pasifik**: 19 provider
|
|
1465
|
+
- **Orta Doğu & Afrika**: 17 provider
|
|
1466
|
+
- **Avrupa**: 5 provider
|
|
1467
|
+
- **Latin Amerika**: 2 provider
|
|
1468
|
+
- **Global**: 13 provider
|
|
1469
|
+
- **Kripto Para**: 12 provider
|
|
1470
|
+
|
|
1471
|
+
### Para Birimi Çeşitliliği
|
|
1472
|
+
- **Toplam Desteklenen Para Birimi**: 100+
|
|
1473
|
+
- **En Çok Kullanılan**: USD, EUR, INR, IDR, TRY
|
|
1474
|
+
|
|
1475
|
+
### Toplam İstatistikler
|
|
1476
|
+
- **Toplam Provider**: 48
|
|
1477
|
+
- **Desteklenen Ülke**: 200+
|
|
1478
|
+
- **Kripto Para Desteği**: 2000+ coin
|
|
1479
|
+
- **Yerel Ödeme Yöntemi**: 500+
|
|
1480
|
+
|
|
1481
|
+
---
|
|
1482
|
+
|
|
1483
|
+
## Kullanım Örnekleri
|
|
1484
|
+
|
|
1485
|
+
Her provider için detaylı kullanım örnekleri `examples/` klasöründe bulunmaktadır:
|
|
1486
|
+
|
|
1487
|
+
```javascript
|
|
1488
|
+
// Genel Kullanım
|
|
1489
|
+
const QuickPos = require('quickpos');
|
|
1490
|
+
|
|
1491
|
+
const config = {
|
|
1492
|
+
providers: {
|
|
1493
|
+
razorpay: {
|
|
1494
|
+
keyId: 'YOUR_KEY_ID',
|
|
1495
|
+
keySecret: 'YOUR_KEY_SECRET'
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
};
|
|
1499
|
+
|
|
1500
|
+
const quickPos = new QuickPos(config);
|
|
1501
|
+
|
|
1502
|
+
// Ödeme oluşturma
|
|
1503
|
+
const payment = await quickPos.razorpay.createPayment({
|
|
1504
|
+
amount: 500,
|
|
1505
|
+
currency: 'INR',
|
|
1506
|
+
orderId: 'ORDER-123',
|
|
1507
|
+
callback_link: 'https://yoursite.com/callback',
|
|
1508
|
+
name: 'John Doe',
|
|
1509
|
+
email: 'john@example.com',
|
|
1510
|
+
phone: '9999999999'
|
|
1511
|
+
});
|
|
1512
|
+
|
|
1513
|
+
console.log('Payment URL:', payment.data.url);
|
|
1514
|
+
|
|
1515
|
+
// Callback işleme
|
|
1516
|
+
const result = await quickPos.razorpay.handleCallback(callbackData);
|
|
1517
|
+
console.log('Payment Status:', result.status);
|
|
1518
|
+
```
|
|
1519
|
+
|
|
1520
|
+
---
|
|
1521
|
+
|
|
1522
|
+
## Notlar
|
|
1523
|
+
|
|
1524
|
+
1. **API Credentials**: Tüm provider'lar için gerçek ödeme işlemleri için production API anahtarları gereklidir.
|
|
1525
|
+
2. **Sandbox/Test Mode**: Çoğu provider sandbox/test modu desteklemektedir.
|
|
1526
|
+
3. **Callback URL**: Tüm provider'lar için callback URL yapılandırılmalıdır.
|
|
1527
|
+
4. **Signature Verification**: Callback'ler için signature doğrulama yapılmaktadır.
|
|
1528
|
+
5. **Currency Format**: Para birimi formatları provider'a göre değişiklik gösterir (kuruş, satang, paise, vb.)
|
|
1529
|
+
|
|
1530
|
+
---
|
|
1531
|
+
|
|
1532
|
+
## Lisans ve Destek
|
|
1533
|
+
|
|
1534
|
+
Bu dokümantasyon QuickPos v1.3.0 için hazırlanmıştır.
|
|
1535
|
+
|
|
1536
|
+
- **GitHub**: https://github.com/fastuptime/QuickPos
|
|
1537
|
+
- **NPM**: https://www.npmjs.com/package/quickpos
|
|
1538
|
+
- **Destek**: fastuptime@gmail.com
|
|
1539
|
+
|
|
1540
|
+
---
|
|
1541
|
+
|
|
1542
|
+
**Son Güncelleme**: 2024
|
|
1543
|
+
**Versiyon**: 1.3.0
|
|
1544
|
+
**Toplam Provider**: 48
|