-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscheme-adapter.yaml
More file actions
240 lines (216 loc) · 4.51 KB
/
Copy pathscheme-adapter.yaml
File metadata and controls
240 lines (216 loc) · 4.51 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
swagger: '2.0'
info:
title: interop-scheme-adapter
description: Scheme Adapter
version: V1
#host: ec2-52-37-54-209.us-west-2.compute.amazonaws.com:8088
schemes:
- http
- https
basePath: /scheme/adapter/v1
paths:
/quotes:
post:
description: Request for a quote
consumes:
- application/json
parameters:
- name: Quote Request
in: body
description: request object
schema:
$ref: '#/definitions/QuoteRequest'
responses:
200:
description: quote response
schema:
$ref: '#/definitions/QuoteResponse'
/payments:
post:
summary: Submit Payment
parameters:
- name: Payment Request
in: body
schema:
$ref: '#/definitions/PaymentRequest'
responses:
200:
description: OK
schema:
$ref: '#/definitions/PaymentResponse'
/notifications:
post:
summary: Submit Notification
parameters:
- name: Notification Request
in: body
schema:
$ref: '#/definitions/NotificationRequest'
responses:
200:
description: Success
/ilpAddress:
get:
summary: Gets the ilpAddress
description:
parameters:
- name: account
in: query
description: ledger url for the account
type: string
responses:
200:
description: ilp address
type: object
properties:
ilpAddress:
type: string
/health:
get:
summary: Gets the health status of the api
description:
responses:
200:
description: OK
examples:
{"status":"ok"}
definitions:
QuoteRequest:
title: Quote Request
type: object
properties:
paymentId:
type: string
payer:
$ref: '#/definitions/Person'
payee:
$ref: '#/definitions/Person'
amountType:
$ref: '#/definitions/AmountTypeEnum'
amount:
$ref: '#/definitions/Amount'
fees:
$ref: '#/definitions/Amount'
transferType:
type: string
required:
- paymentId
- payer
- payee
- amountType
- amount
- transferType
QuoteResponse:
title: Quote Response
type: object
properties:
paymentId:
type: string
receiveAmount:
$ref: '#/definitions/Amount'
payeeFee:
$ref: '#/definitions/Amount'
payeeCommission:
$ref: '#/definitions/Amount'
ipr:
type: string
sourceExpiryDuration:
type: number
format: integer
required:
- paymentId
- receiveAmount
- payeeFee
- payeeCommission
PaymentRequest:
title: Payment Request
type: object
properties:
ipr:
type: string
sourceAmount:
type: number
format: decimal
sourceAccount:
type: string
connectorAccount:
type: string
sourceExpiryDuration:
type: number
format: integer
PaymentResponse:
title: Payment Response
type: object
properties:
paymentId:
type: string
connectorAccount:
type: string
status:
$ref: '#/definitions/StatusEnum'
rejectionMessage:
type: string
fulfillment:
type: string
Amount:
title: Amount
type: object
properties:
amount:
type: number
format: double
currency:
type: string
Person:
title: Person Object
type: object
properties:
identifier:
type: string
identifierType:
type: string
url:
type: string
account:
type: string
required:
- identifier
- identifierType
HealthStatus:
type: object
properties:
status:
type: string
NotificationRequest:
title: Notification Request
type: object
properties:
ipr:
type: string
paymentId:
type: string
destinationAccount:
type: string
status:
$ref: '#/definitions/StatusEnum'
fulfillment:
type: string
required:
- ipr
- paymentId
- destinationAccount
- status
StatusEnum:
title: statusEnum
type: string
enum:
- prepared
- executed
- rejected
- expired
AmountTypeEnum:
title: Amount Type Enum
type: string
enum:
- SEND
- RECEIVE