forked from kliment/pymill
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsnippets.txt
421 lines (175 loc) · 10 KB
/
snippets.txt
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
- Authentication
paymill_context = paymill.PaymillContext('<YOUR PRIVATE API KEY>');
---------------------Payments----------------------
- Create new Credit Card Payment with TOKEN
payment_service = paymill_context.get_payment_service()
payment_with_token = payment_service.create(token='098f6bcd4621d373cade4e832627b4f6')
- Create new Credit Card Payment with TOKEN & CLIENT
payment_service = paymill_context.get_payment_service()
payment_with_token_and_client = payment_service.create(token='098f6bcd4621d373cade4e832627b4f6', client_id='client_33baaf3ee3251b083420')
- Create new Debit Payment with TOKEN
payment_service = paymill_context.get_payment_service()
payment_with_token = payment_service.create(token='098f6bcd4621d373cade4e832627b4f6')
- Create new Debit Payment with TOKEN & CLIENT
payment_service = paymill_context.get_payment_service()
payment_with_token_and_client = payment_service.create(token='098f6bcd4621d373cade4e832627b4f6', client_id='client_33baaf3ee3251b083420')
- Payment Details
payment_service = paymill_context.get_payment_service()
payment_details = payment_service.detail(payment_with_token)
- List Payments
payment_service = paymill_context.get_payment_service()
payments_list = payment_service.list()
- Remove Payment
payment_service = paymill_context.get_payment_service()
paymentService.remove(payment_with_token)
---------------------Preauthorizations----------------------
- Create new Preauthorization with TOKEN
preauthorization_service = paymill_context.get_preauthorization_service()
preauthorization_with_token = preauthorization_service.create_with_token(token='098f6bcd4621d373cade4e832627b4f6', amount=4200, currency='EUR')
- Create new Preauthorization with PAYMENT
preauthorization_service = paymill_context.get_preauthorization_service()
preauthorization_with_payment = preauthorization_service.create_with_payment_id(payment_id ='pay_3af44644dd6d25c820a9’, amount=4200, currency='EUR')
- Preauthorization Details
preauthorization_service = paymill_context.get_preauthorization_service()
preauthorization_details = preauthorization_service.detail(preauthorization_with_token)
- List Preauthorizations
preauthorization_service = paymill_context.get_preauthorization_service()
preauthorizations_list = preauthorization_service.list()
- Remove Preauthorizations
preauthorization_service = paymill_context.get_preauthorization_service()
preauthorization_service.remove(preauthorization_with_token)
---------------------Transactions----------------------
- Create new Transaction with PAYMENT
transaction_service = paymill_context.get_transaction_service()
transaction_with_payment = transaction_service.create_with_payment_id(payment_id=‘pay_3af44644dd6d25c820a9’, amount=4200, currency='EUR', description='Test Python')
- Create new Transaction with TOKEN
transaction_service = paymill_context.get_transaction_service()
transaction_with_token = transaction_service.create_with_token(token='098f6bcd4621d373cade4e832627b4f6', amount=4200, currency='EUR', description='Test Python')
- Create new Transaction with CLIENT & PAYMENT
transaction_service = paymill_context.get_transaction_service()
transaction_with_client_and_payment = transaction_service.create_with_payment_id(payment_id=‘pay_3af44644dd6d25c820a9’, amount=4200, currency='EUR', description='Test Python', client_id=‘client_33baaf3ee3251b083420’)
- Create new Transaction with PREAUTHORIZATION
transaction_service = paymill_context.get_transaction_service()
transaction_with_preauthorization = transaction_service.create_with_preauthorization_id(preauthorization_id=‘preauth_ec54f67e52e92051bd65’, amount=4200, currency='EUR', description='Test Python')
- Create new Transaction with APP FEE
transaction_service = paymill_context.get_transaction_service()
transaction_with_token = transaction_service.create_with_token(token='098f6bcd4621d373cade4e832627b4f6', amount=4200, currency='EUR', description='Test Python', fee_amount=4200, fee_payment_id=‘pay_3af44644dd6d25c820a9’, fee_currency='EUR')
- Transaction Details
transaction_service = paymill_context.get_transaction_service()
transaction_details = transaction_service.detail(transaction_with_token)
- Update Transaction
transaction_service = paymill_context.get_transaction_service()
transaction_with_token.amount = 3200
transaction_with_token.currency = 'USD'
transaction_with_token.description = 'Updated Test Python'
transaction_service.update(transaction_with_token)
- List Transactions
transaction_service = paymill_context.get_transaction_service()
transactions_list = transaction_service.list()
---------------------Refunds----------------------
- Refund Transaction
refund_service = paymill_context.get_refund_service()
refund_transaction = refund_service.refund_transaction(transaction_id=‘tran_ca3e7d41fb16d0157a99’, amount=4200)
- Refund Details
refund_service = paymill_context.get_refund_service()
refund_details = refund_service.detail(refund_transaction)
- List Refunds
refund_service = paymill_context.get_refund_service()
refunds_list = refund_service.list()
---------------------Clients----------------------
- Create new Client
client_service = paymill_context.get_client_service()
client = client_service.create(email='[email protected]')
- Client Details
client_service = paymill_context.get_client_service()
client_details = client_service.detail(client)
- Update Client
client_service = paymill_context.get_client_service()
client.email = '[email protected]'
client_service.update(client)
- Remove Client
client_service = paymill_context.get_client_service()
client_service.remove(client)
- List Clients
client_service = paymill_context.get_client_service()
clients_list = client_service.list()
---------------------Offers----------------------
- Create new Offer
offer_service = paymill_context.get_offer_service()
offer = offer_service.create(amount=100, currency='EUR', interval='1 MONTH', 'My offer')
- Offer Details
offer_service = paymill_context.get_offer_service()
offer_details = offer_service.detail(offer)
- Update Offer
offer_service = paymill_context.get_offer_service()
offer.amount = 200
offer.currency = 'USD'
offer.interval = '2 WEEKS'
offer.name = 'My updated offer'
offer_service.update(offer)
- Remove Offer
offer_service = paymill_context.get_offer_service()
offer_service.remove(offer)
- List Offers
offer_service = paymill_context.get_offer_service()
offers_list = offer_service.list()
---------------------Subscriptions----------------------
- Create new Subscription WITHOUT OFFER
subscription_service = paymill_context.get_subscription_service()
subscription_without_offer = subscription_service.create_with_amount(payment_id=‘pay_3af44644dd6d25c820a9’, amount=4200, currency='EUR', interval='2 DAYS,MONDAY')
- Create new Subscription WITH AN OFFER
subscription_service = paymill_context.get_subscription_service()
subscription_with_an_offer = subscription_service.create_with_offer_id(payment_id=‘pay_3af44644dd6d25c820a9’, offer_id=‘offer_bb33ea77b942f570997b’)
- Create new Subscription WITH OFFER AND DIFFERENT VALUES
subscription_service = paymill_context.get_subscription_service()
subscription_with_offer_and_different_values = subscription_service.create_with_offer_id(payment_id=‘pay_3af44644dd6d25c820a9’, offer_id=‘offer_bb33ea77b942f570997b’, name='Subscription with values', period_of_validity='4 WEEKS', start_at=1409647372)
- Subscription Details
subscription_service = paymill_context.get_subscription_service()
subscription_details = subscription_service.detail(subscription_without_offer)
- Update Subscription GENERAL
subscription_service = paymill_context.get_subscription_service()
subscription_without_offer.name = 'Updated Subscription'
subscription_service.update(subscription_without_offer)
- Update Subscription AMOUNT
subscription_service = paymill_context.get_subscription_service()
subscription_without_offer.amount = 5200
subscription_service.update_with_amount(subscription_without_offer, amount_change_type=1)
- Update Subscription OFFER
subscription_service = paymill_context.get_subscription_service()
subscription_with_an_offer.offer_id=‘offer_40237e20a7d5a231d99b’
subscription_service.update_with_offer_id(subscription_with_an_offer, offer_change_type=2)
- Update Subscription PAUSE
subscription_service = paymill_context.get_subscription_service()
subscription_service.pause(subscription_without_offer)
- Update Subscription UNPAUSE
subscription_service = paymill_context.get_subscription_service()
subscription_service.unpause(subscription_without_offer)
- Delete Subscription
subscription_service = paymill_context.get_subscription_service()
subscription_service.remove(subscription_without_offer)
- Cancel Subscription
subscription_service = paymill_context.get_subscription_service()
subscription_service.cancel(subscription_without_offer)
- List Subscriptions
subscription_service = paymill_context.get_subscription_service()
subscription_list = subscription_service.list()
-------------------------Webhooks----------------------------------------------
- Create new URL Webhook
webhook_service = paymill_context.get_webhook_service()
url_webhook = webhook_service.create_url(url='<your-webhook-url>', event_types=['subscription.succeeded'], active=True)
- Create new E-Mail Webhook
webhook_service = paymill_context.get_webhook_service()
email_webhook = webhook_service.create_email(email='[email protected]', event_types=['subscription.succeeded'], active=True)
- Webhook Details
webhook_service = paymill_context.get_webhook_service()
webhook_details = webhook_service.detail(email_webhook)
- Update Webhook
webhook_service = paymill_context.get_webhook_service()
email_webhook.email = '[email protected]'
webhook_service.update(email_webhook)
- Remove Webhook
webhook_service = paymill_context.get_webhook_service()
webhook_service.remove(email_webhook)
- List Webhooks
webhook_service = paymill_context.get_webhook_service()
webhooks_list = webhook_service.list()