-
Notifications
You must be signed in to change notification settings - Fork 11
/
api.yaml
577 lines (577 loc) · 17.6 KB
/
api.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
openapi: 3.0.3
info:
title: STORES Invoice API
description: Payment with STORES Invoice
version: 1.0.2
x-CoineyPayge-Version: 2016-10-25
servers:
- url: /v1
security:
- bearer: []
paths:
/payments:
get:
tags:
- payment
description: |
支払取引の一覧を返します。
parameters:
- name: X-CoineyPayge-Version
in: header
description: API のマイナーバージョンを指定します。
schema:
type: string
- name: limit
in: query
description: |
返す支払取引の数を指定。
schema:
maximum: 100
minimum: 1
type: integer
default: 10
- name: startingAfter
in: query
description: |
支払取引の一覧を取得する際に、先頭の支払取引の ID を指定します。
返ってくる一覧は、この ID の次の支払取引からとなります。
この動きは、次のページを取得したい場合に、前回取得した一覧の最後の ID を
指定すればよいことになります。
schema:
type: string
- name: endingBefore
in: query
description: |
支払取引の一覧を取得する際に、最後の支払取引の ID を指定します。
返ってくる一覧は、この ID の前の支払取引からとなります。
この動きは、前のページを取得したい場合に、前回取得した一覧の最後の ID を
指定すればよいことになります。
schema:
type: string
responses:
200:
description: |
条件にマッチする支払取引を返します。
content:
application/json:
schema:
type: object
properties:
object:
type: string
enum:
- list
hasMore:
type: boolean
totalCount:
type: integer
data:
type: array
items:
$ref: '#/components/schemas/Payment'
400:
description: |
リクエストパラメータ不正
headers:
WWW-Authenticate:
description: |
Bearer error="invalid_request"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
401:
description: |
API キーが設定されていない。
もしくは、不正な API キー
headers:
WWW-Authenticate:
description: |
Bearer realm="no_api_key" or
Bearer error="invaid_api_key"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
post:
tags:
- payment
description: |
支払取引を開始します。
parameters:
- name: X-CoineyPayge-Version
in: header
description: API のマイナーバージョンを指定します。
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatePaymentRequest'
required: false
responses:
201:
description: |
支払い完了
content:
application/json:
schema:
$ref: '#/components/schemas/Payment'
400:
description: |
リクエストパラメータ不正
headers:
WWW-Authenticate:
description: |
Bearer error="invalid_request"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
401:
description: |
API キーが設定されていない。
もしくは、不正な API キー
headers:
WWW-Authenticate:
description: |
Bearer realm="no_api_key" or
Bearer error="invaid_api_key"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
x-codegen-request-body-name: body
/payments/{PAYMENT_ID}:
get:
tags:
- payment
description: |
支払取引の情報を返します。
parameters:
- name: X-CoineyPayge-Version
in: header
description: API のマイナーバージョンを指定します。
schema:
type: string
- name: PAYMENT_ID
in: path
description: 支払取引のID
required: true
schema:
type: string
responses:
200:
description: |
該当する支払取引を返します。
content:
application/json:
schema:
$ref: '#/components/schemas/Payment'
400:
description: |
リクエストパラメータ不正
headers:
WWW-Authenticate:
description: |
Bearer error="invalid_request"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
401:
description: |
API キーが設定されていない。
もしくは、不正な API キー
headers:
WWW-Authenticate:
description: |
Bearer realm="no_api_key" or
Bearer error="invaid_api_key"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
404:
description: |
支払取引が見つからない
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
patch:
tags:
- payment
description: |
支払取引の情報を更新します。
parameters:
- name: X-CoineyPayge-Version
in: header
description: API のマイナーバージョンを指定します。
schema:
type: string
- name: PAYMENT_ID
in: path
description: 支払取引のID
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePaymentRequest'
required: false
responses:
200:
description: |
支払取引の更新完了。
content:
application/json:
schema:
$ref: '#/components/schemas/Payment'
400:
description: |
リクエストパラメータ不正
headers:
WWW-Authenticate:
description: |
Bearer error="invalid_request"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
401:
description: |
API キーが設定されていない。
もしくは、不正な API キー
headers:
WWW-Authenticate:
description: |
Bearer realm="no_api_key" or
Bearer error="invaid_api_key"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
404:
description: |
支払取引が見つからない
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
x-codegen-request-body-name: body
components:
schemas:
Payment:
type: object
properties:
id:
type: string
object:
type: string
enum:
- payment
mode:
type: string
description: |
本番環境では live、テスト環境では test
enum:
- live
- test
createdAt:
type: string
description: |
取引の作成日時。ISO 8601 フォーマット
format: dateTime
amount:
type: number
format: float
currency:
type: string
description: |
支払に使う通貨。
ISO 4217 に基づいた 3桁の通貨コードを使います。
enum:
- jpy
locale:
type: string
description: |
STORES 請求書決済の表示言語。
支払処理前は、支払作成時に設定した表示言語、
支払処理が行われた場合は、支払時に設定した表示言語となります。
ISO 639 の言語コード、ISO 3166 の国コードに基づいています。
enum:
- ja_JP
- en_US
- zh_CN
- zh_TW
- ko_KR
- th_TH
paidAt:
type: string
description: |
支払処理が完了した日時。ISO 8601 フォーマット
status が paid or refunded の場合のみ
format: dateTime
refundedAt:
type: string
description: |
返金処理が完了した日時。ISO 8601 フォーマット
status が refunded の場合のみ
format: dateTime
validUntil:
type: string
description: |
この支払が有効である日時。ISO 8601 フォーマット
format: dateTime
status:
type: string
enum:
- open
- expired
- paid
- refunded
- cancelled
subject:
type: string
description: |
STORES 請求書決済 の件名
remarks:
type: string
description: |
STORES 請求書決済 の備考
description:
type: string
description: |
STORES 請求書決済に関する内部的なメモ
metadata:
type: object
properties: {}
description: |
STORES 請求書決済に関する任意のデータ
任意の Key/Value が定義できるが、Value は文字列のみ許可
links:
type: object
properties:
paymentUrl:
type: string
description: |
実際に支払処理する画面へ遷移する URL
POST `/payment` で作られる
redirectUrl:
type: string
description: |
支払処理が完了した際に遷移する画面の URL
cancelUrl:
type: string
description: |
支払処理をキャンセルした際に遷移する画面の URL
webhookUrl:
type: string
description: |
支払処理中に呼び出す Webhook の URL
CreatePaymentRequest:
required:
- amount
- currency
- method
type: object
properties:
amount:
minimum: 1
type: number
description: |
支払金額
format: float
currency:
type: string
description: |
支払に使う通貨を指定します。
ISO 4217 に基づいた 3桁の通貨コードを使います。
現状は "JPY" のみ有効です。
enum:
- jpy
locale:
type: string
description: |
STORES 請求書決済の表示言語を指定します。
指定しない場合は、ブラウザの設定が使われます。
ISO 639 の言語コード、ISO 3166 の国コードに基づいています。
enum:
- ja_JP
- en_US
- zh_CN
- zh_TW
- ko_KR
- th_TH
redirectUrl:
maxLength: 255
type: string
description: |
支払処理が完了した後に遷移する画面の URL を指定します。
指定しない場合は STORES 請求書決済の画面が使われます。
cancelUrl:
maxLength: 255
type: string
description: |
支払処理をキャンセルした際に遷移する画面の URL を指定します。
指定しない場合は、ユーザーからのキャンセルができなくなります。
webhookUrl:
maxLength: 255
type: string
description: |
この支払でのみ使用する webhook URL を指定します。
指定しない場合は、アカウントの設定値が使われます。
アカウントの設定値もない場合は、webhook の通知をしません。
method:
type: string
description: |
支払に使用する支払方法を指定します。
通常は、このパラメータを設定せずに使用します。
パラメータを設定しない場合は、使用できる支払方法から選択する画面が表示されます。
このパラメータを設定した場合は、支払方法の選択画面を表示せず、直接入力画面へと遷移します。
enum:
- creditcard
subject:
type: string
description: |
STORES 請求書決済の件名
remarks:
type: string
description: |
STORES 請求書決済の備考
description:
type: string
description: |
STORES 請求書決済に関する内部的なメモ
metadata:
type: object
properties: {}
description: |
STORES 請求書決済に関する任意のデータ
任意の Key/Value が定義できるが、Value は文字列のみ許可
expiredOn:
type: string
description: |
支払期限を日付で指定します。
指定しない場合は、デフォルトで 3ヶ月が設定されます。
format: date
UpdatePaymentRequest:
type: object
properties:
expiredOn:
type: string
description: |
支払期限を日付で指定します。
指定しない場合は、デフォルトで 3ヶ月が設定されます。
format: date
description:
type: string
description: |
STORES 請求書決済に関する内部的なメモ
metadata:
type: object
properties: {}
description: |
STORES 請求書決済に関する任意のデータ
任意の Key/Value が定義できるが、Value は文字列のみ許可
Errors:
required:
- type
type: object
properties:
type:
type: string
description: エラーの種類
enum:
- api_error
- authentication_error
- card_error
- invalid_request_error
code:
type: string
description: エラーコード
message:
type: string
description: エラーの内容
params:
type: object
properties: {}
description: |
パラメータに関するエラーの場合に使用する。
Key としてパラメータ名、Value としてエラーメッセージを含める。
responses:
AuthenticationError:
description: |
API キーが設定されていない。
もしくは、不正な API キー
headers:
WWW-Authenticate:
description: |
Bearer realm="no_api_key" or
Bearer error="invaid_api_key"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
InvalidParameter:
description: |
リクエストパラメータ不正
headers:
WWW-Authenticate:
description: |
Bearer error="invalid_request"
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
NotFound:
description: |
支払取引が見つからない
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
parameters:
payment_id:
name: PAYMENT_ID
in: path
description: 支払取引のID
required: true
schema:
type: string
x_coiney_version:
name: X-CoineyPayge-Version
in: header
description: API のマイナーバージョンを指定します。
schema:
type: string
securitySchemes:
bearer:
type: apiKey
description: RFC 7235 の Authorization ヘッダを用い、RFC 6750 の Bearer スキームを使用する
name: Authorization
in: header