-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
19342 lines (19315 loc) · 511 KB
/
openapi.yaml
File metadata and controls
19342 lines (19315 loc) · 511 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
openapi: 3.0.1
info:
title: Paystack
description: The OpenAPI specification of the Paystack API that merchants and
developers can harness to build financial solutions in Africa.
version: 1.0.0
contact:
email: techsupport@paystack.com
servers:
- url: https://api.paystack.co
description: Base API endpoint
security:
- bearerAuth: []
tags:
- name: Transaction
description: |
A collection of endpoints for managing payments
x-product-name: Transactions
- name: Charge
description: >
A collection of endpoints for configuring and managing the payment
channels when initiating a payment
x-product-name: Charges
- name: Bulk Charge
description: >
A collection of endpoints for creating and managing multiple recurring
payments
x-product-name: Bulk Charges
- name: Subaccount
description: |
A collection of endpoints for creating and managing accounts for sharing a
transaction with
x-product-name: Subaccounts
- name: Split
description: >
A collection of endpoints for spliting a transaction and managing the
splits
x-product-name: Transaction Splits
- name: Terminal
description: >
A collection of endpoints for building delightful in-person payment
experiences
x-product-name: Terminal
- name: Virtual Terminal
description: >
A collection of endpoints for building in-person payments without a
physical terminal
x-product-name: Virtual Terminal
- name: Customer
description: >
A collection of endpoints for creating and managing customers on an
integration
x-product-name: Customers
- name: Direct Debit
description: |
A collection of endpoints for managing Direct Debit
x-product-name: Direct Debit
- name: Dedicated Virtual Account
description: >
A collection of endpoints for creating and managing payment accounts for
customers
x-product-name: Dedicated Virtual Accounts
- name: Apple Pay
description: >
A collection of endpoints for managing application's top-level domain or
subdomain accepting payment via Apple Pay
x-product-name: Apple Pay
- name: Plan
description: |
A collection of endpoints for creating and managing recurring payment
configuration
x-product-name: Plans
- name: Subscription
description: |
A collection of endpoints for creating and managing recurring payments
x-product-name: Subscriptions
- name: Transfer Recipient
description: >
A collection of endpoints for creating and managing beneficiaries that you
send money to
x-product-name: Transfer Recipients
- name: Transfer
description: |
A collection of endpoints for automating sending money to beneficiaries
x-product-name: Transfers
- name: Balance
description: >
A collection of endpoints gaining insights into the amount on an
integration
x-product-name: Balance
- name: Payment Request
description: |
A collection of endpoints for managing invoices for the payment of goods
and services
x-product-name: Payment Requests
- name: Product
description: |
A collection of endpoints for creating and managing inventories
x-product-name: Products
- name: Storefront
description: |
A collection of endpoints for creating and managing storefronts
x-product-name: Storefronts
- name: Order
description: |
A collection of endpoints for creating and managing orders
x-product-name: Orders
- name: Page
description: |
A collection of endpoints for creating and managing links for the
collection of payment for products
x-product-name: Payment Pages
- name: Settlement
description: |
A collection of endpoints for gaining insights into payouts
x-product-name: Settlements
- name: Integration
description: |
A collection of endpoints for managing some settings on an integration
x-product-name: Integration
- name: Refund
description: >
A collection of endpoints for creating and managing transaction
reimbursement
x-product-name: Refunds
- name: Dispute
description: >
A collection of endpoints for managing transactions complaint made by
customers
x-product-name: Disputes
- name: Bank
description: |
A collection of endpoints for managing bank details
x-product-name: Banks
- name: Miscellaneous
description: |
A collection of endpoints that provides utility functions
x-product-name: Miscellaneous
paths:
/transaction/initialize:
post:
tags:
- Transaction
summary: Initialize Transaction
operationId: transaction_initialize
description: Create a new transaction
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionInitialize"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/TransactionInitialize"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionInitializeResponse"
"400":
$ref: "#/components/responses/TransactionInitializeBadRequestResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/transaction/charge_authorization:
post:
tags:
- Transaction
summary: Charge Authorization
operationId: transaction_chargeAuthorization
description: Charge all authorizations marked as reusable with this endpoint
whenever you need to receive payments
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionChargeAuthorization"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/TransactionChargeAuthorization"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeAuthorizationResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/transaction/partial_debit:
post:
tags:
- Transaction
summary: Partial Debit
operationId: transaction_partialDebit
description: Retrieve part of a payment from a customer
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionPartialDebit"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/TransactionPartialDebit"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionPartialDebitResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/transaction/check_authorization:
post:
tags:
- Transaction
summary: Check Authorization
operationId: transaction_checkAuthorization
description: Check if an authorization code can be used for a charge.
requestBody:
content:
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/TransactionCheckAuthorization"
application/json:
schema:
$ref: "#/components/schemas/TransactionCheckAuthorization"
responses:
"200":
$ref: "#/components/responses/Ok"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/transaction/verify/{reference}:
get:
tags:
- Transaction
summary: Verify Transaction
operationId: transaction_verify
description: Verify a previously initiated transaction using it's reference
parameters:
- name: reference
in: path
description: The transaction reference to verify
required: true
schema:
type: string
example: re4lyvq3s3
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/VerifyResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction:
get:
tags:
- Transaction
summary: List Transactions
operationId: transaction_list
description: List transactions that has occurred on your integration
parameters:
- in: query
name: use_cursor
description: A flag to indicate if cursor based pagination should be used
schema:
type: boolean
example: true
- in: query
name: next
description: >
An alphanumeric value returned for every cursor based retrieval,
used to retrieve the next set of data
schema:
type: string
- in: query
name: previous
description: >
An alphanumeric value returned for every cursor based retrieval,
used to retrieve the previous set of data
schema:
type: string
- in: query
name: per_page
schema:
type: integer
description: The number of records to fetch per request
- in: query
name: page
schema:
type: integer
description: The offset to retrieve data from
- in: query
name: from
description: The start date
schema:
type: string
format: date-time
- in: query
name: to
description: The end date
schema:
type: string
format: date-time
- in: query
name: status
description: Filter transaction by status
schema:
type: string
enum:
- success
- failed
- abandoned
- reversed
- in: query
name: source
description: The origin of the payment
schema:
type: string
enum:
- merchantApi
- checkout
- pos
- virtualTerminal
- in: query
name: terminal_id
description: Filter transactions by a terminal ID
schema:
type: string
- in: query
name: virtual_account_number
description: Filter transactions by a virtual account number
schema:
type: string
- in: query
name: customer_code
description: Filter transactions by a customer code
schema:
type: string
- in: query
name: amount
description: Filter transactions by a specific amount
schema:
type: integer
format: int64
- in: query
name: settlement
description: The settlement ID to filter for settled transactions
schema:
type: integer
format: int64
- in: query
name: channel
description: The payment method the customer used to complete the transaction
schema:
type: string
enum:
- card
- pos
- bank
- dedicated_nuban
- ussd
- bank_transfer
- in: query
name: subaccount_code
description: Filter transaction by subaccount code
schema:
type: string
- in: query
name: split_code
description: Filter transaction by split code
schema:
type: string
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionListResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction/{id}:
get:
tags:
- Transaction
summary: Fetch Transaction
operationId: transaction_fetch
description: Fetch a transaction to get its details
parameters:
- name: id
in: path
description: The ID of the transaction to fetch
required: true
schema:
type: integer
format: int64
example: 4099260516
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionFetchResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction/{id}/event:
get:
tags:
- Transaction
summary: Get Transaction Event
operationId: transaction_event
description: Fetch the event for a specific transaction.
parameters:
- name: id
in: path
description: The ID of the transaction
required: true
schema:
type: integer
format: int64
responses:
"200":
$ref: "#/components/responses/Ok"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction/{id}/session:
get:
tags:
- Transaction
summary: Get Transaction Session
operationId: transaction_session
description: Fetch the session for a specific transaction.
parameters:
- name: id
in: path
description: The ID of the transaction
required: true
schema:
type: integer
format: int64
responses:
"200":
$ref: "#/components/responses/Ok"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction/timeline/{id}:
get:
tags:
- Transaction
summary: Fetch Transaction Timeline
operationId: transaction_timeline
description: Fetch the steps taken from the initiation to the completion of a
transaction
parameters:
- name: id
in: path
required: true
description: The ID of the transaction to fetch
schema:
type: integer
format: int64
example: 3936799950
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionTimelineResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction/totals:
get:
tags:
- Transaction
summary: Transaction Totals
operationId: transaction_totals
description: Get the total amount of all transactions
parameters:
- in: query
description: The start date
name: from
schema:
type: string
format: date-time
example: 2024-06-01T00:00:01Z
- in: query
name: to
description: The end date
schema:
type: string
format: date-time
example: 2024-06-30T13:36:54Z
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionTotalsResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/transaction/export:
get:
tags:
- Transaction
summary: Export Transactions
operationId: transaction_export
x-operationId: transaction_exportTransaction
description: Download transactions that occurred on your integration for a
specific timeframe
parameters:
- in: query
name: from
description: The start date
schema:
type: string
format: date-time
example: 2024-06-01T00:00:01Z
- in: query
name: to
description: The end date
schema:
type: string
format: date-time
example: 2024-06-30T13:36:54Z
- in: query
name: status
description: Filter by the status of the transaction
schema:
type: string
enum:
- success
- failed
- abandoned
- reversed
- all
example: success
- in: query
name: customer
description: Filter by customer ID
schema:
type: number
example: 123172416
- in: query
name: subaccount_code
description: Filter by subaccount code
schema:
type: string
example: ACCT_dskvlw3y3dMukmt
- in: query
name: settlement
description: Filter by the settlement ID
schema:
type: integer
format: int64
example: 5687910
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/TransactionExportResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/charge:
post:
tags:
- Charge
summary: Create Charge
operationId: charge_create
description: Initiate a payment by integrating the payment channel of your choice.
requestBody:
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ChargeCreate"
- type: object
properties:
bank:
$ref: "#/components/schemas/Bank"
- type: object
properties:
mobile_money:
$ref: "#/components/schemas/MobileMoney"
- type: object
properties:
ussd:
$ref: "#/components/schemas/USSD"
- type: object
properties:
eft:
$ref: "#/components/schemas/EFT"
application/x-www-form-urlencoded:
schema:
allOf:
- $ref: "#/components/schemas/ChargeCreate"
- type: object
properties:
bank:
$ref: "#/components/schemas/Bank"
- type: object
properties:
mobile_money:
$ref: "#/components/schemas/MobileMoney"
- type: object
properties:
ussd:
$ref: "#/components/schemas/USSD"
- type: object
properties:
eft:
$ref: "#/components/schemas/EFT"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeCreateResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/charge/submit_pin:
post:
tags:
- Charge
summary: Submit PIN
operationId: charge_submitPin
description: Submit PIN to continue a charge
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitPin"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/ChargeSubmitPin"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitPinResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/charge/submit_otp:
post:
tags:
- Charge
summary: Submit OTP
operationId: charge_submitOtp
description: Submit OTP to complete a charge
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitOTP"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/ChargeSubmitOTP"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitOtpResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/charge/submit_phone:
post:
tags:
- Charge
summary: Submit Phone
operationId: charge_submitPhone
description: Submit phone number when requested
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitPhone"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/ChargeSubmitPhone"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitPhoneResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/charge/submit_birthday:
post:
tags:
- Charge
summary: Submit Birthday
operationId: charge_submitBirthday
description: Submit the customer's birthday when requested
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitBirthday"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/ChargeSubmitBirthday"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitBirthdayResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/charge/submit_address:
post:
tags:
- Charge
summary: Submit Address
operationId: charge_submitAddress
description: Send the details of the customer's address for address verification
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeSubmitAddress"
application/x-www-form-urlencoded:
schema:
$ref: "#/components/schemas/ChargeSubmitAddress"
responses:
"200":
$ref: "#/components/responses/Ok"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
/charge/{reference}:
get:
tags:
- Charge
summary: Check pending charge
operationId: charge_check
description: >
When you get `pending` as a charge status or if there was an exception
when calling any of the `/charge` endpoints, wait 10 seconds or more,
then make a check to see if its status has changed. Don't call too early
as you may get a lot more pending than you should.
parameters:
- name: reference
in: path
required: true
description: The reference of the ongoing transaction
schema:
type: string
example: 5bwib5v6anhe9xa
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/ChargeCheckPendingResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/bulkcharge:
post:
tags:
- Bulk Charge
summary: Initiate Bulk Charge
operationId: bulkCharge_initiate
description: Charge multiple customers in batches
requestBody:
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/BulkChargeInitiate"
application/x-www-form-urlencoded:
schema:
type: array
items:
$ref: "#/components/schemas/BulkChargeInitiate"
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/BulkChargeInitiateResponse"
"401":
$ref: "#/components/responses/Unauthorized"
default:
description: Server error
get:
tags:
- Bulk Charge
summary: List Bulk Charge Batches
operationId: bulkCharge_list
description: List all bulk charge batches.
parameters:
- in: query
name: perPage
description: Number of records to fetch per page
schema:
type: integer
- in: query
name: page
description: The offset to retrieve data from
schema:
type: integer
- in: query
name: status
description: Filter by the status of the charges
schema:
type: string
enum:
- active
- paused
- complete
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/BulkChargeListResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/bulkcharge/{code}:
parameters:
- name: code
description: The code for the charge whose batches you want to retrieve
in: path
required: true
schema:
type: string
example: BCH_180tl7oq7cayggh
get:
tags:
- Bulk Charge
summary: Fetch Bulk Charge Batch
operationId: bulkCharge_fetch
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.
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/BulkChargeFetchResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/bulkcharge/{code}/charges:
get:
tags:
- Bulk Charge
summary: List Charges in a Batch
operationId: bulkCharge_charges
description: This endpoint retrieves the charges associated with a specified
batch code
parameters:
- name: code
description: An code for the batch whose charges you want to retrieve
in: path
required: true
schema:
type: string
example: BCH_180tl7oq7cayggh
- in: query
name: perPage
description: Number of records to fetch per page
schema:
type: integer
- in: query
name: page
description: The offset to retrieve data from
schema:
type: integer
- in: query
name: status
description: Filter by the status of the charges
schema:
type: string
enum:
- success
- failed
- pending
- error
- inactive_authorization
responses:
"200":
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/BulkChargeFetchBulkBatchChargesResponse"
"401":
$ref: "#/components/responses/Unauthorized"
"404":
$ref: "#/components/responses/NotFound"
default:
description: Server error
/bulkcharge/pause/{code}:
get:
tags:
- Bulk Charge
summary: Pause Bulk Charge Batch
operationId: bulkCharge_pause
description: Pause the processing of a charge batch
parameters:
- name: code
description: The batch code for the bulk charge you want to pause
in: path
required: true
schema:
type: string
example: BCH_180tl7oq7cayggh
responses:
"200":
description: ""
content: