-
Notifications
You must be signed in to change notification settings - Fork 4
/
partner.yaml
9068 lines (8663 loc) · 378 KB
/
partner.yaml
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
# NOTE:
# エントリーポイントについて、x-pokepay-allow-server-side: true がついているものはサーバーサイドで正しいことが保証されているが
# それ以外は存在しないか間違っているので注意
openapi: '3.0.1'
info:
description: >-
Partner APIs
title: Partner APIs
version: 24.3.26
tags:
- name: Transaction
- name: Transfer
- name: Check
description: |
店舗ユーザが発行し、エンドユーザーがポケペイアプリから読み取ることでチャージ取引が発生するQRコードです。
チャージQRコードを解析すると次のようなURLになります(URLは環境によって異なります)。
`https://www-sandbox.pokepay.jp/checks/xxxxxxxx-xxxx-xxxxxxxxx-xxxxxxxxxxxx`
QRコードを読み取る方法以外にも、このURLリンクを直接スマートフォン(iOS/Android)上で開くことによりアプリが起動して取引が行われます。(注意: 上記URLはsandbox環境であるため、アプリもsandbox環境のものである必要があります) 上記URL中の `xxxxxxxx-xxxx-xxxxxxxxx-xxxxxxxxxxxx` の部分がチャージQRコードのIDです。
- name: Bill
description: 支払いQRコード
- name: Cashtray
description: |
Cashtrayは支払いとチャージ両方に使えるQRコードで、店舗ユーザとエンドユーザーの間の主に店頭などでの取引のために用いられます。
Cashtrayによる取引では、エンドユーザーがQRコードを読み取った時点で即時取引が作られ、ユーザに対して受け取り確認画面は表示されません。
Cashtrayはワンタイムで、一度読み取りに成功するか、取引エラーになると失効します。
また、Cashtrayには有効期限があり、デフォルトでは30分で失効します。
- name: Customer
- name: Organization
- name: Shop
- name: User
- name: Account
- name: Private Money
- name: Bulk
- name: Event
- name: Campaign
- name: Webhook
description: |
Webhookは特定のワーカータスクでの処理が完了した事を通知します。
WebHookにはURLとタスク名、有効化されているかを設定することが出来ます。
通知はタスク完了時、事前に設定したURLにPOSTリクエストを行います。
- name: Coupon
description: |
Couponは支払い時に指定し、支払い処理の前にCouponに指定の方法で値引き処理を行います。
Couponは特定店舗で利用できるものや利用可能期間、配信条件などを設定できます。
- name: UserDevice
description: |
UserDeviceはユーザー毎のデバイスを管理します。
あるユーザーが使っている端末を区別する必要がある場合に用いられます。
これが必要な理由はBank Payを用いたチャージを行う場合は端末を区別できることが要件としてあるためです。
- name: BankPay
description: |
BankPayを用いた銀行からのチャージ取引などのAPIを提供しています。
- name: SevenBankATMSession
description: |
セブンATMチャージの取引内容を照会するAPIを提供しています。
components:
schemas:
Pong:
x-pokepay-schema-type: "response"
properties:
pong:
x-pokepay-csharp-property-name: "Value"
type: string
pattern: '^ok$'
Echo:
x-pokepay-schema-type: "response"
properties:
status:
type: string
pattern: '^ok$'
message:
type: string
Pagination:
x-pokepay-schema-type: "response"
properties:
current:
type: integer
per_page:
type: integer
minimum: 1
max_page:
type: integer
minimum: 1
has_prev:
type: boolean
has_next:
type: boolean
AdminUserWithShopsAndPrivateMoneys:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
role:
type: string
pattern: '^(SERVICE|ORGANIZATION|SHOP)-(MANAGER|STAFF)$'
email:
type: string
format: email
name:
type: string
is_active:
type: boolean
organization:
$ref: '#/components/schemas/Organization'
shops:
type: array
items:
$ref: '#/components/schemas/User'
private_moneys:
type: array
items:
$ref: '#/components/schemas/PrivateMoney'
Account:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 'ウォレットID'
name:
type: string
title: 'ウォレット名'
is_suspended:
type: boolean
title: 'ウォレットが凍結されているかどうか'
status:
type: string
enum: [active, suspended, pre-closed, closed]
private_money:
$ref: '#/components/schemas/PrivateMoney'
title: '設定マネー情報'
AccountWithUser:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
name:
type: string
is_suspended:
type: boolean
status:
type: string
enum: [active, suspended, pre-closed, closed]
private_money:
$ref: '#/components/schemas/PrivateMoney'
user:
$ref: '#/components/schemas/User'
AccountDetail:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
name:
type: string
is_suspended:
type: boolean
status:
type: string
enum: [active, suspended, pre-closed, closed]
balance:
type: number
format: decimal
money_balance:
type: number
format: decimal
point_balance:
type: number
format: decimal
point_debt:
type: number
format: decimal
private_money:
$ref: '#/components/schemas/PrivateMoney'
user:
$ref: '#/components/schemas/User'
external_id:
type: string
nullable: true
maxLength: 50
ShopAccount:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 'ウォレットID'
name:
type: string
title: 'ウォレット名'
is_suspended:
type: boolean
title: 'ウォレットが凍結されているかどうか'
can_transfer_topup:
type: boolean
title: 'チャージ可能かどうか'
private_money:
$ref: '#/components/schemas/PrivateMoney'
title: '設定マネー情報'
AccountDeleted:
x-pokepay-schema-type: "response"
properties: {}
AccountBalance:
x-pokepay-schema-type: "response"
properties:
expires_at:
type: string
format: date-time
money_amount:
type: number
format: decimal
point_amount:
type: number
format: decimal
Bill:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 支払いQRコードのID
amount:
type: number
format: decimal
nullable: true
title: 支払い額
description: 支払い額。支払い額未指定の場合は支払い時に任意金額を入力できます。
max_amount:
type: number
format: decimal
nullable: true
title: 支払い額を範囲指定した場合の上限
description: 支払い額に任意金額を入力する際の上限です。
min_amount:
type: number
format: decimal
nullable: true
title: 支払い額を範囲指定した場合の下限
description: 支払い額に任意金額を入力する際の下限です。
description:
type: string
title: 支払いQRコードの説明文(アプリ上で取引の説明文として表示される)
account:
$ref: '#/components/schemas/AccountWithUser'
title: 支払いQRコード発行ウォレット
description: 支払いQRコードを発行した店舗のウォレットです。ユーザやマネーの情報を含みます。
is_disabled:
type: boolean
title: 無効化されているかどうか
token:
type: string
title: 支払いQRコードを解析したときに出てくるURL
Check:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: チャージQRコードのID
created_at:
type: string
format: date-time
title: チャージQRコードの作成日時
amount:
type: number
format: decimal
deprecated: true
title: チャージマネー額
money_amount:
type: number
format: decimal
title: チャージマネー額
point_amount:
type: number
format: decimal
title: チャージポイント額
description:
type: string
title: チャージQRコードの説明文(アプリ上で取引の説明文として表示される)
user:
$ref: '#/components/schemas/User'
title: 送金元ユーザ情報
is_onetime:
type: boolean
title: 使用回数が一回限りかどうか
is_disabled:
type: boolean
title: 無効化されているかどうか
expires_at:
type: string
format: date-time
title: チャージQRコード自体の失効日時
last_used_at:
type: string
format: date-time
nullable: true
private_money:
$ref: '#/components/schemas/PrivateMoney'
title: 対象マネー情報
usage_limit:
type: integer
minimum: 1
nullable: true
title: 一回限りでない場合の最大読み取り回数
usage_count:
type: number
nullable: true
title: 一回限りでない場合の現在までに読み取られた回数
point_expires_at:
type: string
format: date-time
nullable: true
title: ポイント有効期限(絶対日数指定)
point_expires_in_days:
type: integer
minimum: 0
nullable: true
title: ポイント有効期限(相対日数指定)
token:
type: string
title: チャージQRコードを解析したときに出てくるURL
PaginatedChecks:
x-pokepay-schema-type: "response"
properties:
rows:
type: array
items:
$ref: '#/components/schemas/Check'
count:
type: integer
minimum: 0
pagination:
$ref: '#/components/schemas/Pagination'
CpmToken:
x-pokepay-schema-type: "response"
type: object
properties:
cpm_token:
x-pokepay-csharp-property-name: "Token"
type: string
minLength: 22
maxLength: 22
account:
$ref: '#/components/schemas/AccountDetail'
transaction:
$ref: '#/components/schemas/Transaction'
nullable: true
event:
$ref: '#/components/schemas/ExternalTransaction'
nullable: true
scopes:
type: array
title: 許可された取引種別
description: エンドユーザーがCPMトークンを生成する際に指定する、CPMトークンに許可された取引の種別。
items:
type: string
enum: [payment, topup, external-transaction]
expires_at:
type: string
format: date-time
title: CPMトークンの失効日時
metadata:
type: string
format: json
title: エンドユーザー側メタデータ
description: |-
取引作成時に店舗側から指定されるメタデータです。
全てのkeyとvalueが文字列であるようなフラットな構造のJSON文字列です。
Cashtray:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: Cashtray自体のIDです。
amount:
type: number
format: decimal
title: 取引金額
description: Cashtrayの取引金額です。正の数ならチャージ、負の数なら支払いとなります。
description:
type: string
title: Cashtrayの説明文
description: Cashtrayの説明文です。アプリ上で取引の説明文として表示されます。
account:
$ref: '#/components/schemas/AccountWithUser'
title: 発行店舗のウォレット
description: Cashtrayを発行した店舗ユーザーのウォレット情報です。ユーザやマネーの情報を含みます。
expires_at:
type: string
format: date-time
title: Cashtrayの失効日時
canceled_at:
type: string
format: date-time
nullable: true
title: Cashtrayの無効化日時。NULLの場合は無効化されていません
token:
type: string
title: CashtrayのQRコードを解析したときに出てくるURL
CashtrayWithResult:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: CashtrayのID
description: Cashtray自体のIDです。
amount:
type: number
format: decimal
title: 取引金額
description: Cashtrayの取引金額です。正の数ならチャージ、負の数なら支払いとなります。
description:
type: string
title: Cashtrayの説明文(アプリ上で取引の説明文として表示される)
account:
$ref: '#/components/schemas/AccountWithUser'
title: 発行店舗のウォレット
description: Cashtrayを発行した店舗ユーザーのウォレット情報です。ユーザやマネーの情報を含みます。
expires_at:
type: string
format: date-time
title: Cashtrayの失効日時
canceled_at:
type: string
format: date-time
nullable: true
title: Cashtrayの無効化日時。NULLの場合は無効化されていません
token:
type: string
title: CashtrayのQRコードを解析したときに出てくるURL
attempt:
$ref: '#/components/schemas/CashtrayAttempt'
title: Cashtray読み取り結果
description: Cashtrayをエンドユーザーが読み取った結果です。Cashtrayがまだ誰にも読み取られていない場合はNULLになります。
nullable: true
transaction:
$ref: '#/components/schemas/Transaction'
title: 取引結果
description: Cashtrayをエンドユーザーが読み取った結果としてできた取引です。Cashtrayがまだ誰にも読み取られていない場合、またはエラーにより取引が完了しなかった場合はNULLになります。
nullable: true
CashtrayAttempt:
x-pokepay-schema-type: "response"
properties:
account:
$ref: '#/components/schemas/AccountWithUser'
title: エンドユーザーのウォレット
description: |-
Cashtrayを読み取ったエンドユーザーのウォレット情報です。ユーザやマネーの情報を含みます。
この際、エンドユーザーがCashtrayを発行した店舗ウォレットのマネーを持っていない場合、この値はNULLになります。
nullable: true
status_code:
type: number
title: ステータスコード
description: エンドユーザーによるCashtrayの読み取りリクエストに対するレスポンスのHTTPステータスコードです。
error_type:
type: string
title: エラー型
description: 取引中に発生したエラーの型名です。エラーが発生しなかった場合は空文字となります。
error_message:
type: string
title: エラーメッセージ
description: 取引中に発生したエラーの説明文です。エラーが発生しなかった場合は空文字となります。
created_at:
type: string
format: date-time
title: Cashtray読み取り記録の作成日時
description: エンドユーザーによるCashtrayの読み取りリクエストに対する記録(CashtrayAttempt)の作成日時です。これによりエンドユーザーがCashtrayをいつ読み取ったかが分かります。
User:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 'ユーザー (または店舗) ID'
name:
type: string
title: 'ユーザー (または店舗) 名'
is_merchant:
type: boolean
title: '店舗ユーザーかどうか'
PrivateMoney:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 'マネーID'
name:
type: string
maxLength: 256
title: 'マネー名'
unit:
type: string
title: 'マネー単位 (例: 円)'
is_exclusive:
type: boolean
title: '会員制のマネーかどうか'
description:
type: string
title: 'マネー説明文'
oneline_message:
type: string
title: 'マネーの要約'
organization:
title: 'マネーを発行した組織'
$ref: '#/components/schemas/Organization'
max_balance:
type: number
format: decimal
title: 'ウォレットの上限金額'
transfer_limit:
type: number
format: decimal
title: 'マネーの取引上限額'
money_topup_transfer_limit:
type: number
format: decimal
title: 'マネーチャージ取引上限額'
type:
type: string
enum: [own, third-party]
title: 'マネー種別 (自家型=own, 第三者型=third-party)'
expiration_type:
type: string
enum: [static, last-update, last-topup-update]
title: '有効期限種別 (チャージ日起算=static, 最終利用日起算=last-update, 最終チャージ日起算=last-topup-update)'
enable_topup_by_member:
type: boolean
nullable: true
deprecated: true
description: 'このパラメータは未使用につき廃止されます'
display_money_and_point:
type: string
enum: [both, money-only, point-only]
Organization:
x-pokepay-schema-type: "response"
properties:
code:
type: string
maxLength: 32
title: '組織コード'
name:
type: string
maxLength: 256
title: '組織名'
Transaction:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: '取引ID'
type:
type: string
title: '取引種別'
description: |
各取引種別の値の意味は以下の通りです。
- topup: チャージ
- payment: 支払い
- transfer: 個人間送金
- exchange: マネー間交換
- cashback: ウォレット退会時の払い戻し処理
- expire: ウォレット退会時の残高失効処理
enum: [topup, payment, transfer, exchange, cashback, expire]
is_modified:
type: boolean
title: '返金された取引かどうか'
sender:
$ref: '#/components/schemas/User'
title: '送金者情報'
sender_account:
$ref: '#/components/schemas/Account'
title: '送金ウォレット情報'
receiver:
$ref: '#/components/schemas/User'
title: '受取者情報'
receiver_account:
$ref: '#/components/schemas/Account'
title: '受取ウォレット情報'
amount:
type: number
title: '取引総額 (マネー額 + ポイント額)'
money_amount:
type: number
title: '取引マネー額'
point_amount:
type: number
title: '取引ポイント額(キャンペーン付与ポイント合算)'
description: |
取引のポイント額です。
キャンペーンによるポイント付与額との合算値なので、元々の取引のポイント額のみを取り出したいときは `raw_point_amount` を参照してください。
チャージ取引の場合、point_amount = raw_point_amount + campaign_point_amount
支払い取引の場合、point_amount = raw_point_amount - campaign_point_amount
が成立します。
raw_point_amount:
type: number
title: '取引ポイント額'
description: |
取引のポイント額です。
キャンペーンによるポイント付与額を含まない、元々の取引で支払われたポイント額を表します。
nullable: true
campaign_point_amount:
type: number
title: 'キャンペーンによるポイント付与額'
nullable: true
done_at:
type: string
format: date-time
title: '取引日時'
description:
type: string
title: '取引説明文'
TransactionDetail:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: '取引ID'
type:
type: string
title: '取引種別'
description: |
各取引種別の値の意味は以下の通りです。
- topup: チャージ
- payment: 支払い
- transfer: 個人間送金
- exchange: マネー間交換
- cashback: ウォレット退会時の払い戻し処理
- expire: ウォレット退会時の残高失効処理
enum: [topup, payment, transfer, exchange, cashback, expire]
is_modified:
type: boolean
title: '返金された取引かどうか'
sender:
$ref: '#/components/schemas/User'
title: '送金者情報'
sender_account:
$ref: '#/components/schemas/Account'
title: '送金ウォレット情報'
receiver:
$ref: '#/components/schemas/User'
title: '受取者情報'
receiver_account:
$ref: '#/components/schemas/Account'
title: '受取ウォレット情報'
amount:
type: number
title: '取引総額 (マネー額 + ポイント額)'
money_amount:
type: number
title: '取引マネー額'
point_amount:
type: number
title: '取引ポイント額(キャンペーン付与ポイント合算)'
description: |
取引のポイント額です。
キャンペーンによるポイント付与額との合算値なので、元々の取引のポイント額のみを取り出したいときは `raw_point_amount` を参照してください。
チャージ取引の場合、point_amount = raw_point_amount + campaign_point_amount
支払い取引の場合、point_amount = raw_point_amount - campaign_point_amount
が成立します。
raw_point_amount:
type: number
title: '取引ポイント額'
description: |
取引のポイント額です。
キャンペーンによるポイント付与額を含まない、元々の取引で支払われたポイント額を表します。
campaign_point_amount:
type: number
title: 'キャンペーンによるポイント付与額'
done_at:
type: string
format: date-time
title: '取引日時'
description:
type: string
title: '取引説明文'
transfers:
type: array
items:
$ref: '#/components/schemas/Transfer'
BillTransaction:
x-pokepay-schema-type: "response"
properties:
transaction:
$ref: '#/components/schemas/Transaction'
bill:
$ref: '#/components/schemas/Bill'
ShopWithMetadata:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 店舗ID
name:
type: string
title: 店舗名
organization_code:
type: string
maxLength: 256
title: 組織コード
status:
type: string
enum: [active, disabled]
title: '店舗の状態'
postal_code:
type: string
nullable: true
title: '店舗の郵便番号'
address:
type: string
nullable: true
title: '店舗の住所'
tel:
type: string
nullable: true
title: '店舗の電話番号'
email:
type: string
nullable: true
format: email
maxLength: 256
title: '店舗のメールアドレス'
external_id:
type: string
nullable: true
maxLength: 36
title: '店舗の外部ID'
ShopWithAccounts:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: 店舗ID
name:
type: string
title: 店舗名
organization_code:
type: string
maxLength: 256
title: 組織コード
status:
type: string
enum: [active, disabled]
title: '店舗の状態'
postal_code:
type: string
nullable: true
title: '店舗の郵便番号'
address:
type: string
nullable: true
title: '店舗の住所'
tel:
type: string
nullable: true
title: '店舗の電話番号'
email:
type: string
nullable: true
format: email
maxLength: 256
title: '店舗のメールアドレス'
external_id:
type: string
nullable: true
maxLength: 36
title: '店舗の外部ID'
accounts:
type: array
items:
$ref: '#/components/schemas/ShopAccount'
BulkTransaction:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
request_id:
type: string
title: リクエストID
name:
type: string
title: バルク取引管理用の名前
description:
type: string
title: バルク取引管理用の説明文
status:
type: string
enum:
- submitted
- examining
- queued
- processing
- error
- done
title: バルク取引の状態
error:
type: string
nullable: true
title: バルク取引のエラー種別
error_lineno:
type: integer
nullable: true
title: バルク取引のエラーが発生した行番号
submitted_at:
type: string
format: date-time
title: バルク取引が登録された日時
updated_at:
type: string
format: date-time
title: バルク取引が更新された日時
BulkTransactionJob:
x-pokepay-schema-type: "response"
properties:
id:
type: integer
bulk_transaction:
$ref: '#/components/schemas/BulkTransaction'
type:
type: string
enum:
- payment
- topup
title: 取引種別
sender_account_id:
type: string
format: uuid
receiver_account_id:
type: string
format: uuid
money_amount:
type: number
format: decimal
minimum: 0
point_amount:
type: number
format: decimal
minimum: 0
description:
type: string
title: バルク取引ジョブ管理用の説明文
bear_point_account_id:
type: string
format: uuid
point_expires_at:
type: string
format: date-time
nullable: true
title: ポイント有効期限
status:
type: string
enum:
- queued
- processing
- done
- error
title: バルク取引ジョブの状態
error:
type: string
nullable: true
title: バルク取引のエラー種別
lineno:
type: integer
nullable: true
title: バルク取引のエラーが発生した行番号
transaction_id:
type: string
format: uuid
nullable: true
created_at:
type: string
format: date-time
title: バルク取引ジョブが登録された日時
updated_at:
type: string
format: date-time
title: バルク取引ジョブが更新された日時
PaginatedBulkTransactionJob:
x-pokepay-schema-type: "response"
properties:
rows:
type: array
items:
$ref: '#/components/schemas/BulkTransactionJob'
count:
type: integer
minimum: 0
pagination:
$ref: '#/components/schemas/Pagination'
AccountWithoutPrivateMoneyDetail:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
name:
type: string
is_suspended:
type: boolean
status:
type: string
enum: [active, suspended, pre-closed, closed]
private_money_id:
type: string
format: uuid
user:
$ref: '#/components/schemas/User'
Transfer:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
sender_account:
$ref: '#/components/schemas/AccountWithoutPrivateMoneyDetail'
receiver_account:
$ref: '#/components/schemas/AccountWithoutPrivateMoneyDetail'
amount:
type: number
format: decimal
minimum: 0
money_amount:
type: number
format: decimal
minimum: 0
point_amount:
type: number
format: decimal
minimum: 0
done_at:
type: string
format: date-time
type:
type: string
enum: [topup, payment, refund-topup, refund-payment, transfer, exchange-inflow, exchange-outflow, refund-exchange-inflow, refund-exchange-outflow, campaign-topup, refund-campaign, use-coupon, refund-coupon, cashback, expire]
description:
type: string
transaction_id:
type: string
format: uuid
ExternalTransaction:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: ポケペイ外部取引ID
is_modified:
type: boolean
title: 返金された取引かどうか
sender:
$ref: '#/components/schemas/User'
title: 送金者情報
sender_account:
$ref: '#/components/schemas/Account'
title: 送金ウォレット情報
receiver:
$ref: '#/components/schemas/User'
title: 受取者情報
receiver_account:
$ref: '#/components/schemas/Account'
title: 受取ウォレット情報
amount:
type: number
title: 決済額
done_at:
type: string
format: date-time
title: 取引日時
description:
type: string
title: 取引説明文
ExternalTransactionDetail:
x-pokepay-schema-type: "response"
properties:
id:
type: string
format: uuid
title: ポケペイ外部取引ID