-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathapis.js
More file actions
2120 lines (2113 loc) · 66.5 KB
/
apis.js
File metadata and controls
2120 lines (2113 loc) · 66.5 KB
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
#!/usr/bin/env node
export default {
subaccount: [
{
api: 'update',
endpoint: 'https://api.paystack.co/subaccount',
method: 'PUT',
params: [],
description: null,
},
{
api: 'fetch',
endpoint: 'https://api.paystack.co/subaccount/{ID}',
method: 'GET',
params: [],
description: null,
},
{
api: 'list',
endpoint: 'https://api.paystack.co/subaccount',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
],
description:
'**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve',
},
{
api: 'create',
endpoint: 'https://api.paystack.co/subaccount',
method: 'POST',
params: [
{
parameter: 'business_name',
required: true,
type: 'String',
},
{
parameter: 'settlement_bank',
required: true,
type: 'String',
},
{
parameter: 'account_number',
required: true,
type: 'String',
},
{
parameter: 'percentage_charge',
required: true,
type: 'String',
},
{
parameter: 'primary_contact_email',
required: false,
type: 'String',
},
{
parameter: 'primary_contact_name',
required: false,
type: 'String',
},
{
parameter: 'primary_contact_phone',
required: false,
type: 'String',
},
{
parameter: 'metadata',
required: false,
type: 'String',
},
{
parameter: 'settlement_schedule',
required: false,
type: 'String',
},
{
parameter:
'eceive payments for the created subaccount by providing their code when doing a transaction. More details here: [Split Payments Overview](https://developers.paystack.co/v1.0/docs/splitpaymentsoverview',
required: false,
type: 'String',
},
],
description:
'**Body Params**\n- **business_name** (_required_) - Name of business for subaccount\n- **settlement_bank** (_required_) - Name of Bank (see list of accepted names by calling [List Banks](https://developers.paystack.co/v1.0/docs/list-banks)\n- **account_number** (_required_) - NUBAN Bank Account Number\n- **percentage_charge** (_required_) - What is the default percentage charged when receiving on behalf of this subaccount?\n- **primary_contact_email** - A contact email for the subaccount\n- **primary_contact_name** - A name for the contact person for this subaccount\n- **primary_contact_phone** - A phone number to call for this subaccount\n- **metadata** - Stringified JSON object\n- **settlement_schedule** - Any of `auto`, `weekly`, `monthly`, `manual`. Auto means payout is T+1 and manual means payout to the subaccount should only be made when requested.\n\nReceive payments for the created subaccount by providing their code when doing a transaction. More details here: [Split Payments Overview](https://developers.paystack.co/v1.0/docs/split-payments-overview)',
},
],
page: [
{
api: 'update',
endpoint: 'https://api.paystack.co/page/',
method: 'PUT',
params: [
{
parameter: 'name',
required: false,
type: 'String',
},
{
parameter: 'description',
required: false,
type: 'String',
},
{
parameter: 'amount',
required: false,
type: 'Number',
},
{
parameter: 'active',
required: false,
type: 'String',
},
],
description:
'**Body Params**\n- **name** - Name of page\n- **description** - Short description of page\n- **amount** - Amount to be charged in kobo. Will override the amount for existing subscriptions.\n- **active** - Set to false to deactivate page url.',
},
{
api: 'fetch',
endpoint: 'https://api.paystack.co/page/id_or_plan_code',
method: 'GET',
params: [],
description: null,
},
{
api: 'list',
endpoint: 'https://api.paystack.co/page',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
{
parameter: 'interval',
required: false,
type: 'String',
},
{
parameter: 'amount',
required: false,
type: 'Number',
},
],
description:
'**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve\n- **interval** - Filter list by plans with specified interval\n- **amount** - Filter list by plans with specified amount (in kobo)',
},
{
api: 'check',
endpoint: 'https://api.paystack.co/page/check_slug_availability/slug',
method: 'GET',
params: [
{
parameter: 'slug',
required: true,
type: 'String',
},
],
description:
'**Path Params**\n- **slug** (_required_) - URL slug to be confirmed',
},
{
api: 'create',
endpoint: 'https://api.paystack.co/page',
method: 'POST',
params: [
{
parameter: 'name',
required: true,
type: 'String',
},
{
parameter: 'description',
required: false,
type: 'String',
},
{
parameter: 'amount',
required: false,
type: 'Number',
},
{
parameter: 'slug',
required: false,
type: 'String',
},
{
parameter: 'redirect_url',
required: false,
type: 'String',
},
{
parameter: 'send_invoices',
required: false,
type: 'String',
},
{
parameter: 'custom_fields',
required: false,
type: 'String',
},
{
parameter:
'end pages created to your customers by giving out a link in this format https://paystack.com/pay/:slug. For instance, a valid link for the page above would be https://paystack.com/pay/5nApBwZkv',
required: false,
type: 'String',
},
],
description:
"**Body Params**\n- **name** (_required_) - Name of page\n- **description** - Short description of page\n- **amount** - Default amount you want to accept using this page. If none is set, customer is free to provide any amount of their choice. The latter scenario is useful for accepting donations\n- **slug** - URL slug you would like to be associated with this page. Page will be accessible at https://paystack.com/pay/[slug]\n- **redirect_url** - If you would like Paystack to redirect someplace upon successful payment, specify the URL here.\n- **send_invoices** - Set to false if you don't want invoices to be sent to your customers\n- **custom_fields** - If you would like to accept custom fields, specify them here. See sample code for details.\n\nSend pages created to your customers by giving out a link in this format https://paystack.com/pay/:slug. For instance, a valid link for the page above would be https://paystack.com/pay/5nApBwZkvY",
},
],
transfer: [
{
api: 'list',
endpoint: 'https://api.paystack.co/transfer',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
],
description:
'**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve',
},
{
api: 'finalize',
endpoint: 'https://api.paystack.co/transfer/finalize_transfer',
method: 'POST',
params: [
{
parameter: 'transfer_code',
required: true,
type: 'String',
},
{
parameter: 'otp',
required: true,
type: 'String',
},
],
description:
'**Body Params**\n- **transfer_code** (_required_) - Transfer code\n- **otp** (_required_) - OTP sent to business phone to verify transfer.',
},
{
api: 'initiate',
endpoint: 'https://api.paystack.co/transfer',
method: 'POST',
params: [
{
parameter: 'Body Params',
required: false,
type: 'String',
},
{
parameter: 'source',
required: true,
type: 'String',
},
{
parameter: 'amount',
required: false,
type: 'Number',
},
{
parameter: 'currency',
required: false,
type: 'String',
},
{
parameter: 'reason',
required: false,
type: 'String',
},
{
parameter: 'recipient',
required: true,
type: 'String',
},
{
parameter: 'reference',
required: false,
type: 'String',
},
],
description:
'Status of transfer object returned will be ‘pending’ if OTP is disabled. In the event that an OTP is required, status will read ‘otp’.\n\n**Body Params**\n- **source** (_required_) - Where should we transfer from? Only balance for now\n- **amount** - Amount to transfer in kobo\n- **currency** - NGN\n- **reason**\n- **recipient** (_required_) - Code for transfer recipient\n- **reference** - If specified, the field should be a unique identifier (in lowercase) for the object. Only `-` `,` `_` and alphanumeric characters allowed.',
},
{
api: 'verify',
endpoint: 'https://api.paystack.co/transfer/{reference}',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'reference',
required: true,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
],
description:
'**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve',
},
{
api: 'disable',
endpoint: 'https://api.paystack.co/transfer/disable_otp',
method: 'POST',
params: [
{
parameter:
'n the event that you want to be able to complete transfers programmatically without use of OTPs, this endpoint helps disable that….with an OTP. No arguments required. An OTP is sent to you on your business phone',
required: true,
type: 'String',
},
],
description:
'In the event that you want to be able to complete transfers programmatically without use of OTPs, this endpoint helps disable that….with an OTP. No arguments required. You will get an OTP.\n\nIn the event that you want to be able to complete transfers programmatically without use of OTPs, this endpoint helps disable that….with an OTP. No arguments required. An OTP is sent to you on your business phone.',
},
{
api: 'enable',
endpoint: 'https://api.paystack.co/transfer/enable_otp',
method: 'POST',
params: [],
description:
'In the event that a customer wants to stop being able to complete transfers programmatically, this endpoint helps turn OTP requirement back on. No arguments required.',
},
{
api: 'initiate',
endpoint: 'https://api.paystack.co/transfer/bulk',
method: 'POST',
params: [
{
parameter: 'Body Params',
required: false,
type: 'String',
},
{
parameter: '(no name)',
required: false,
type: 'String',
},
{
parameter:
'tatus of transfer object returned will be ‘pending’ if OTP is disabled. In the event that an OTP is required, status will read ‘otp’',
required: true,
type: 'String',
},
],
description:
'You need to disable the Transfers OTP requirement to use this endpoint.\n\n**Body Params**\n- **(no name)**\n\nStatus of transfer object returned will be ‘pending’ if OTP is disabled. In the event that an OTP is required, status will read ‘otp’.',
},
{
api: 'finalize',
endpoint: 'https://api.paystack.co/transfer/disable_otp_finalize',
method: 'POST',
params: [
{
parameter: 'otp',
required: true,
type: 'String',
},
],
description:
'**Body Params**\n- **otp** (_required_) - OTP sent to business phone to verify disabling OTP requirement\n\n',
},
{
api: 'fetch',
endpoint: 'https://api.paystack.co/transfer/id',
method: 'GET',
params: [
{
parameter: 'id_or_code',
required: true,
type: 'String',
},
],
description:
'**Path Params**\n- **id_or_code** (_required_) - An ID or code for the transfer whose details you want to retrieve.',
},
{
api: 'list',
endpoint: 'https://api.paystack.co/transfer/id_or_code',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
],
description:
'This lists all bulk charge batches created by the integration. Statuses can be `active`, `paused`, or `complete`.\n\n**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve',
},
{
api: 'resend',
endpoint: 'https://api.paystack.co/transfer/resend_otp',
method: 'POST',
params: [
{
parameter: 'Body Params',
required: false,
type: 'String',
},
{
parameter: 'transfer_code',
required: true,
type: 'String',
},
{
parameter: 'reason',
required: true,
type: 'String',
},
],
description:
'Creates a new recipient. An duplicate account number will lead to the retrieval of the existing record.\n\n**Body Params**\n- **transfer_code** (_required_) - Transfer code\n- **reason** (_required_) - either `resend_otp` or `transfer`',
},
],
paymentrequest: [
{
api: 'create',
endpoint: 'https://api.paystack.co/paymentrequest',
method: 'POST',
params: [
{
parameter: 'customer',
required: true,
type: 'String',
},
{
parameter: 'due_date',
required: true,
type: 'String',
},
{
parameter: 'amount',
required: true,
type: 'Number',
},
{
parameter: 'description',
required: false,
type: 'String',
},
{
parameter: 'line_items',
required: false,
type: 'String',
},
{
parameter: 'tax',
required: false,
type: 'String',
},
{
parameter: 'currency',
required: false,
type: 'String',
},
{
parameter: 'send_notification',
required: false,
type: 'String',
},
{
parameter: 'draft',
required: false,
type: 'String',
},
{
parameter: 'send_notification',
required: false,
type: 'String',
},
{
parameter: 'has_invoice',
required: false,
type: 'String',
},
{
parameter: 'invoice_number',
required: false,
type: 'String',
},
],
description:
'**Body Params**\n- **customer** (_required_) - Customer ID or code\n- **due_date** (_required_) - ISO 8601 representation of request due date\n- **amount** (_required_) - Invoice amount. Only useful if line items and tax values are ignored. endpoint will throw a friendly warning if neither is available.\n- **description**\n- **line_items** - Array of line items in the format `[{"name":"item 1", "amount":2000}]`\n- **tax** - Array of taxes to be charged in the format `[{"name":"VAT", "amount":2000}]`\n- **currency** - Defaults to Naira\n- **send_notification** - Indicates whether Paystack sends an email notification to customer. Defaults to `true`.\n- **draft** - Indicate if request should be saved as draft. Defaults to `false` and overrides send_notification.\n- **send_notification** - Indicates whether Paystack sends an email notification to customer. Defaults to `true`.\n- **has_invoice** - Set to `true` to create a draft invoice (adds an auto incrementing invoice number if none is provided) even if there are no `line_items` or `tax` passed.\n- **invoice_number** - Numeric value of invoice. Invoice will start from 1 and auto increment from there. This field is to help override whatever value Paystack decides. Auto increment for subsequent invoices continue from this point.',
},
{
api: 'finalize',
endpoint: 'https://api.paystack.co/paymentrequest/finalize/ID_OR_CODE',
method: 'POST',
params: [
{
parameter: 'Body Params',
required: false,
type: 'String',
},
{
parameter: 'send_notification',
required: false,
type: 'String',
},
],
description:
'Publishes invoice that is draft by sending customer the invoice via email\n\n**Body Params**\n- **send_notification** - Indicates whether Paystack sends an email notification to customer. Defaults to `true`',
},
{
api: 'send',
endpoint: 'https://api.paystack.co/paymentrequest/notify/ID_OR_CODE',
method: 'POST',
params: [
{
parameter: 'id',
required: false,
type: 'String',
},
],
description:
'**Path Params**\n- **id** - Invoice code for which you want to send a notification for',
},
{
api: 'list',
endpoint: 'https://api.paystack.co/paymentrequest',
method: 'GET',
params: [
{
parameter: 'customer',
required: false,
type: 'String',
},
{
parameter: 'status',
required: false,
type: 'String',
},
{
parameter: 'currency',
required: false,
type: 'String',
},
{
parameter: 'paid',
required: false,
type: 'String',
},
{
parameter: 'include_archive',
required: false,
type: 'String',
},
{
parameter: 'payment_request',
required: false,
type: 'String',
},
],
description:
"**Query Params**\n- **customer** - Specify an ID for the customer whose requests you want to retrieve\n- **status** - Filter requests by status ('failed', 'success', 'abandoned')\n- **currency** - Filter requests sent in a particular currency.\n- **paid** - Filter requests that have been paid for \n- **include_archive** - Includes archived requests in the response\n- **payment_request** - Filter specific invoice by passing invoice code",
},
{
api: 'view',
endpoint: 'https://api.paystack.co/paymentrequest/REQUEST_ID_OR_CODE',
method: 'GET',
params: [
{
parameter: 'id',
required: true,
type: 'String',
},
],
description:
'**Path Params**\n- **id** _(required)_ - An ID for the Invoice',
},
{
api: 'invoice',
endpoint: 'https://api.paystack.co/paymentrequest/totals',
method: 'GET',
params: [],
description: null,
},
{
api: 'update',
endpoint: 'https://api.paystack.co/paymentrequest/ID_OR_CODE',
method: 'PUT',
params: [
{
parameter: 'description',
required: false,
type: 'String',
},
{
parameter: 'amount',
required: false,
type: 'Number',
},
{
parameter: 'line_item',
required: false,
type: 'String',
},
{
parameter: 'tax',
required: false,
type: 'String',
},
{
parameter: 'due_date',
required: false,
type: 'String',
},
{
parameter: 'metadata',
required: false,
type: 'String',
},
{
parameter: 'send_notification',
required: false,
type: 'String',
},
{
parameter: 'currency',
required: false,
type: 'String',
},
{
parameter: 'customer',
required: false,
type: 'String',
},
],
description:
'**Body Params**\n- **description**\n- **amount**\n- **line_item**\n- **tax**\n- **due_date**\n- **metadata**\n- **send_notification**\n- **currency** - only works in draft mode\n- **customer** - only works in draft mode',
},
{
api: 'verify',
endpoint: 'https://api.paystack.co/paymentrequest/verify/{ID}',
method: 'GET',
params: [
{
parameter: 'ID',
required: false,
type: 'String',
},
{
parameter:
'ote that a key is added called `pending_amount` when you fetch an invoice. This is because when paying for an invoice, you can choose to pay part but not all. Whenever a successful transaction is made, the key updates to reveal what’s left of the invoice to pay',
required: false,
type: 'String',
},
],
description:
'**Path Params**\n- **ID** - The invoice code for the Payment Request to be verified\n\nNote that a key is added called `pending_amount` when you fetch an invoice. This is because when paying for an invoice, you can choose to pay part but not all. Whenever a successful transaction is made, the key updates to reveal what’s left of the invoice to pay.',
},
],
transferrecipient: [
{
api: 'create',
endpoint: 'https://api.paystack.co/transferrecipient',
method: 'POST',
params: [
{
parameter: 'Body Params',
required: false,
type: 'String',
},
{
parameter: 'type',
required: true,
type: 'String',
},
{
parameter: 'name',
required: true,
type: 'String',
},
{
parameter: 'metadata',
required: false,
type: 'String',
},
{
parameter: 'bank_code',
required: true,
type: 'String',
},
{
parameter: 'account_number',
required: true,
type: 'String',
},
{
parameter: 'currency',
required: false,
type: 'String',
},
{
parameter: 'description',
required: false,
type: 'String',
},
],
description:
'Creates a new recipient. An duplicate account number will lead to the retrieval of the existing record.\n\n**Body Params**\n- **type** (_required_) - Recipient Type (Only nuban at this time)\n- **name** (_required_) - A name for the recipient\n- **metadata** - Store additional information about your recipient in a structured format. JSON\n- **bank_code** (_required_) - Required if type is nuban. You can find a list of bank codes at [api.paystack.co/bank](https://api.paystack.co/bank)\n- **account_number** (_required_) - Required if type is `nuban`\n- **currency** - Currency for the account receiving the transfer.\n- **description**',
},
{
api: 'delete',
endpoint: 'https://api.paystack.co/transferrecipient',
method: 'DELETE',
params: [],
description: null,
},
{
api: 'list',
endpoint: 'https://api.paystack.co/transferrecipient',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
],
description:
'**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve',
},
{
api: 'update',
endpoint: '{recipient_code_or_id}',
method: 'PUT',
params: [],
description: null,
},
],
subscription: [
{
api: 'disable',
endpoint: 'https://api.paystack.co/subscription/disable',
method: 'POST',
params: [
{
parameter: 'code',
required: true,
type: 'String',
},
{
parameter: 'token',
required: true,
type: 'String',
},
],
description:
'**Body Params**\n- **code** (_required_) - Subscription code\n- **token** (_required_) - Email token',
},
{
api: 'fetch',
endpoint: ':id_or_subscription_code',
method: 'GET',
params: [],
description: null,
},
{
api: 'create',
endpoint: 'https://api.paystack.co/subscription',
method: 'POST',
params: [
{
parameter: 'customer',
required: true,
type: 'String',
},
{
parameter: 'plan',
required: true,
type: 'String',
},
{
parameter: 'authorization',
required: false,
type: 'String',
},
{
parameter: 'start_date',
required: false,
type: 'String',
},
{
parameter:
'ote the `email_token` attribute for the subscription object. We create one on each subscription so customers can cancel their subscriptions from within the invoices sent to their mailboxes. Since they are not authorized, the email tokens are what we use to authenticate the requests over the API',
required: false,
type: 'String',
},
],
description:
"**Body Params**\n- **customer** (_required_) - Customer's email address or customer code\n- **plan** (_required_) - Plan code\n- **authorization** - If customer has multiple authorizations, you can set the desired authorization you wish to use for this subscription here. If this is not supplied, the customer's most recent authorization would be used\n- **start_date** - Set the date for the first debit. (ISO 8601 format)\n\nNote the `email_token` attribute for the subscription object. We create one on each subscription so customers can cancel their subscriptions from within the invoices sent to their mailboxes. Since they are not authorized, the email tokens are what we use to authenticate the requests over the API.",
},
{
api: 'list',
endpoint: 'https://api.paystack.co/subscription',
method: 'GET',
params: [
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
{
parameter: 'customer',
required: false,
type: 'String',
},
{
parameter: 'plan',
required: false,
type: 'String',
},
],
description:
'**Query Params**\n- **perPage** - Specify how many records you want to retrieve per page\n- **page** - Specify exactly what page you want to retrieve\n- **customer** - Filter by Customer ID\n- **plan** - Filter by Plan ID',
},
{
api: 'enable',
endpoint: 'https://api.paystack.co/subscription/enable',
method: 'POST',
params: [
{
parameter: 'code',
required: true,
type: 'String',
},
{
parameter: 'token',
required: true,
type: 'String',
},
],
description:
'**Body Params**\n- **code** (_required_) - Subscription code\n- **token** (_required_) - Email token',
},
],
bulkcharge: [
{
api: 'fetch',
endpoint: 'https://api.paystack.co/bulkcharge/id_or_code',
method: 'GET',
params: [
{
parameter: 'Path Params',
required: false,
type: 'String',
},
{
parameter: 'id_or_code',
required: true,
type: 'String',
},
],
description:
'This endpoint retrieves a specific batch code. It also returns useful information on its progress by way of the `total_charges` and `pending_charges` attributes.\n\n**Path Params**\n- **id_or_code** (_required_) - An ID or code for the transfer whose details you want to retrieve.',
},
{
api: 'fetch',
endpoint: 'https://api.paystack.co/bulkcharge/id_or_code/charges',
method: 'GET',
params: [
{
parameter: 'Path Params',
required: false,
type: 'String',
},
{
parameter: 'id_or_code',
required: true,
type: 'String',
},
{
parameter: 'status',
required: false,
type: 'String',
},
{
parameter: 'perPage',
required: false,
type: 'String',
},
{
parameter: 'page',
required: false,
type: 'Number',
},
],
description:
'This endpoint retrieves the charges associated with a specified batch code. Pagination parameters are available. You can also filter by status. Charge statuses can be `pending`, `success` or `failed`.\n\n**Path Params**\n- **id_or_code** (_required_) - An ID or code for the batch whose charges you want to retrieve.\n\n**Query Params**\n- **status** - `pending`, `success` or `failed`\n- **perPage**\n- **page**\n',
},
{
api: 'initiate',
endpoint: 'https://api.paystack.co/bulkcharge',
method: 'POST',
params: [
{
parameter: 'Body Params',
required: false,
type: 'String',
},
{
parameter: '(no_name)',
required: false,
type: 'String',
},
],
description:
'Send an array of objects with authorization codes and amount in kobo so we can process transactions as a batch.\n\n**Body Params**\n- **(no_name)**',
},
{
api: 'resume',
endpoint: 'https://api.paystack.co/bulkcharge/resume/batch_code',
method: 'GET',
params: [
{
parameter: 'Path Params',
required: false,
type: 'String',
},
{
parameter: 'batch_code',
required: true,
type: 'String',
},
],
description:
'Use this endpoint to pause processing a batch\n\n**Path Params**\n- **batch_code** (_required_)',
},
{
api: 'pause',
endpoint: 'https://api.paystack.co/bulkcharge/pause/batch_code',
method: 'GET',
params: [
{
parameter: 'Path Params',
required: false,
type: 'String',
},
{
parameter: 'batch_code',
required: true,
type: 'String',