forked from TOMP-WG/TOMP-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTOMP-API-6-AFTER-SALES.yaml
More file actions
585 lines (561 loc) · 20.5 KB
/
TOMP-API-6-AFTER-SALES.yaml
File metadata and controls
585 lines (561 loc) · 20.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
openapi: 3.1.0
info:
title: Transport Operator MaaS Provider API
description: "<h2>Context</h2>
<p>This API allows technical communication between Transport Operators (TO) and MaaS providers (MP, and other resellers), to fulfill a complete MaaS user journey<br>
For more information: <a href='https://github.com/TOMP-WG/TOMP-API/wiki/OpenAPI-entry-page'>TOMP-API wiki</a>, and <a href='https://github.com/TOMP-WG/TOMP-API/wiki/OpenAPI-code-convention'>Coding conventions</a>"
version: "2.0.0"
contact:
name: TOMP working group
url: https://github.com/TOMP-WG/TOMP-API
license:
name: Apache 2.0
url: "http://www.apache.org/licenses/LICENSE-2.0.html"
x-modules:
- after-sales
tags:
- name: after sales
description: This part of the API describes how the financial settlement should be done. All kinds of fares, fees, debits, and credits are described.
paths:
/collections/redress-options/items:
get:
operationId: getRedressOptions
summary: "Retrieve redress options for a guarantee"
description: Returns possible refund or replacement options for a guarantee
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
- name: packageId
in: query
description: the id of the package that contains a purchased product
required: true
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageReference"
- name: offerId
in: query
description: the offer with a guarantee
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/offerReference"
- name: legId
in: query
description: the offer with a guarantee
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/legReference"
- name: guaranteeId
in: query
description: the unfulfilled guarantee
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/shortString"
- name: travellerId
in: query
description: to request redresses for a single traveller
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/travellerReference"
- name: ancillaryId
in: query
description: to request redresses for a not-used ancillary or ancillary to remove
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/ancillaryReference"
- name: supportTicket
in: query
description: reference to support ticket(s) to claim redress options
explode: true
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
tags:
- after sales
x-semantics:
- transmodel: REFUND QUERY
responses:
"200":
$ref: "#/components/responses/redressResponse"
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
/processes/claim-redress-option/execution:
post:
operationId: redressOptionRequest
description: redress options must be claimed & confirmed
tags:
- after sales
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
x-semantics:
- transmodel: REDRESS QUERY
requestBody:
$ref: "#/components/requestBodies/redressOptionRequest"
responses:
"200":
$ref: "TOMP-API-1-CORE.yaml#/components/responses/packageResponse"
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
/processes/confirm-redress-option/execution:
post:
operationId: confirmRedressOptionRequest
description: confirm the claimed redress option
tags:
- after sales
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
requestBody:
$ref: "#/components/requestBodies/redressOptionRequest"
responses:
"200":
$ref: "TOMP-API-1-CORE.yaml#/components/responses/packageResponse"
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
/processes/refund-deposit/execution:
post:
operationId: refundDepositRequest
summary: "Request to refund a deposit"
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
tags:
- after sales
requestBody:
$ref: "#/components/requestBodies/refundDepositRequest"
responses:
"204":
description: the payment is acknowledged
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
/collections/payments/items:
get:
operationId: getPaymentOverview
summary: "Retrieve financial details"
description: Returns all the JOURNAL ENTRIES that should be paid
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/limit"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/offset"
- name: startTime
in: query
description: start of the selection
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/dateTime"
- name: endTime
in: query
description: end of the selection
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/dateTime"
- name: invoiceState
in: query
required: false
schema:
$ref: "#/components/schemas/paymentState"
- name: package
in: query
required: false
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageReference"
- name: category
in: query
description: type of PAYMENT DETAIL (e.g. fare, addition costs, fines, ...)
required: false
schema:
$ref: "#/components/schemas/paymentCategory"
- name: onBehalveOf
in: header
description: the identity of the reseller. Only to be used in a PSP (externalized payments) setup.
required: false
schema:
type: string
tags:
- after sales
responses:
"200":
$ref: "#/components/responses/paymentResponse"
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
/processes/confirm-payment/execution:
post:
operationId: confirmPaymentEntry
summary: "Confirm a financial transaction"
description: The MP (reseller) confirms a payment
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
tags:
- after sales
requestBody:
$ref: "#/components/requestBodies/confirmPaymentRequest"
responses:
"204":
description: the payment is acknowledged
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
/processes/cancel-package/execution:
post:
operationId: cancelPackageOperation
summary: "Cancel a package in confirmed state for (technical issues)."
description:
Cancel this package. This endpoint is only there to correct (technical) issues.<br>
Normally, after purchase, you have to request redress options, claim it and confirm the claim.<br>
<br>
Before purchase you release a package.<br>
During the purchase you rollback a package.<br>
parameters:
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/acceptLanguage"
- $ref: "TOMP-API-1-CORE.yaml#/components/parameters/authorization"
tags:
- after sales
x-semantics:
- transmodel: TRAVEL PACKAGE CANCELLATION QUERY
requestBody:
$ref: "TOMP-API-1-CORE.yaml#/components/requestBodies/packageRequest"
responses:
"200":
$ref: "TOMP-API-1-CORE.yaml#/components/responses/packageResponse"
default:
$ref: "TOMP-API-1-CORE.yaml#/components/responses/errorResponse"
components:
requestBodies:
redressOptionRequest:
x-semantics:
- transmodel: none
content:
application/json:
schema:
type: object
required:
- inputs
properties:
inputs:
type: object
required:
- package
- guarantee
- option
properties:
package:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageReference"
offer:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/offerReference"
guarantee:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
option:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
refundDepositRequest:
x-semantics:
- transmodel: none
content:
application/json:
schema:
type: object
required:
- inputs
properties:
inputs:
type: object
properties:
package:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageReference"
leg:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/legReference"
confirmPaymentRequest:
x-semantics:
- transmodel: none
content:
application/json:
schema:
type: object
required:
- inputs
properties:
inputs:
type: object
required:
- paymentId
properties:
paymentId:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
responses:
redressResponse:
x-semantics:
- transmodel: none
description: a list of redress options
headers:
Version:
$ref: "TOMP-API-1-CORE.yaml#/components/headers/version"
Content-Language:
$ref: "TOMP-API-1-CORE.yaml#/components/headers/contentLanguage"
Expires:
schema:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/httpDate"
required: true
content:
application/geo+json:
schema:
$ref: "#/components/schemas/redressOptions"
paymentResponse:
x-semantics:
- transmodel: none
description: journal entries
headers:
Content-Language:
$ref: "TOMP-API-1-CORE.yaml#/components/headers/contentLanguage"
Version:
$ref: "TOMP-API-1-CORE.yaml#/components/headers/version"
content:
application/geo+json:
schema:
$ref: "#/components/schemas/payments"
schemas:
redressOptions:
x-semantics:
- transmodel: TRAVEL REDRESSes
type: object
required:
- type
properties:
type:
type: string
pattern: "^(FeatureCollection)$"
features:
type: array
items:
type: object
properties:
id:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
type:
type: string
pattern: "^(Feature)$"
properties:
$ref: "#/components/schemas/redressOption"
links:
type: array
items:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/link"
properties:
type: object
properties:
type:
type: string
pattern: "^(redressOptions)$"
package:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageReference"
offer:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/offerReference"
guarantee:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
numberMatched:
type: number
numberReturned:
type: number
links:
type: array
description:
actions that can be performed on this package, but also alternative (rel=alternative+1, alternative+2) offers or references to other resources
In case it is an alternative, specify clearly in the description what the financial consequences are.
items:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/link"
redressOption:
x-semantics:
- transmodel: TRAVEL REDRESS
type: object
properties:
type:
type: string
pattern: "^(RedressOption)$"
id:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
packageState:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageStatus"
redressType:
type: string
enum: [ PACKAGE_REFUND,
OFFER_REFUND,
LEG_REFUND,
ANCILLARY_REFUND,
REPLACEMENT ]
reason:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/guarantee"
compensations:
type: array
items:
$ref: "#/components/schemas/financialDetail"
replacements:
type: array
items:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageProperties"
paymentCategory:
x-semantics:
- transmodel: none
type: string
description: The category of the journalled item <br>
_ALL_ - for filtering purposes only<br>
<h2>TO initiated payments </h2>
To request these payments, use the notifications, send a notification containing the payment confirmation.<br>
_DEPOSIT_ - a deposit, to refund, use _REFUND_<br>
_DAMAGE_ - extra costs that must be paid by the MP due to damage to the asset or ancillaries<br>
_LOSS_ - extra costs that must be paid by the MP due to loss of asset or ancillaries<br>
_STOLEN_ - the asset (and ancillaries) are stolen and should be paid for<br>
_EXTRA_USAGE_ - the asset is paid for in advance, additional usage must be paid for (can also be a refund when used less! The amount should be negative in that case)<br>
_FINE_ - a fine that arrived later on<br>
_OTHER_ASSET_USED_ - additional costs for a replaced asset<br>
_FARE_ - the normal costs of the purchased and executiond leg(s)<br>
_OTHER_ - unspecified<br>
_CREDIT_ - generic CREDIT, e.g. for kick-backs <br>
_VOUCHER_ - part of the fare that is covered by a voucher (no need to pay)<br>
_REFUND_ - refund of the deposit or upfront paid fare<br>
_REBATE_ - (partial) rebate of the fare<br>
_REIMBURSEMENT_ - reimbursement of the fare<br>
enum: [ ALL,
DAMAGE,
LOSS,
STOLEN,
EXTRA_USAGE,
REFUND,
REBATE,
REIMBURSEMENT,
FINE,
OTHER_ASSET_USED,
CREDIT,
VOUCHER,
DEPOSIT,
OTHER,
FARE ]
financialDetail:
x-semantics:
- transmodel: none
allOf:
- $ref: "TOMP-API-1-CORE.yaml#/components/schemas/amountOfMoney"
- type: object
properties:
id:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
description: id of the JOURNAL ENTRY, the LEG id should be used
category:
$ref: "#/components/schemas/paymentCategory"
state:
$ref: "#/components/schemas/paymentState"
expirationDate:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/dateTime"
sequenceId:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/tinyInt"
description: sequence id of the JOURNAL ENTRY, in combination with **id** unique from TO perspective.
invoiceId:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/shortString"
description: the number of the invoice. Should be filled in when invoiced (**state**=_INVOICED_).
invoiceDate:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/dateTime"
comment:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/longString"
units:
type: array
items:
type: object
properties:
unitCategory:
type: string
enum: [DISTANCE, DURATION, USAGE, OTHER]
description:
type: string
unit:
type: string
enum: [KM, MILE, HOURS, MINUTES, DAYS, LITER, KILOWATTHOUR, CO2_COMPENSATION, OTHER]
amount:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/float"
vatNumber:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/shortString"
description: VAT identification number.
bankAccount:
$ref: "#/components/schemas/bankAccount"
description: this account will be used
customFields:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/customProperties"
paymentState:
x-semantics:
- transmodel: none
type: string
description: the state of the payment detail
enum: [TO_INVOICE, INVOICING, INVOICED]
payments:
x-semantics:
- transmodel: none
description: a list of offers.
type: object
properties:
type:
type: string
pattern: "^(FeatureCollection)$"
features:
type: array
items:
type: object
properties:
type:
type: string
pattern: "^(Feature)$"
id:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/uuid"
properties:
$ref: "#/components/schemas/financialDetail"
links:
type: array
items:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/link"
properties:
type: object
description: this object contains the filter parameters
properties:
type:
type: string
pattern: "^(paymentCollection)$"
limit:
type: integer
offset:
type: integer
startTime:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/dateTime"
endTime:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/dateTime"
invoiceState:
$ref: "#/components/schemas/paymentState"
package:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/packageReference"
category:
$ref: "#/components/schemas/paymentCategory"
numberMatched:
type: number
numberReturned:
type: number
links:
type: array
description:
actions that can be performed on this package, but also alternative (rel=alternative+1, alternative+2) offers or references to other resources
In case it is an alternative, specify clearly in the description what the financial consequences are.
items:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/link"
bankAccount:
x-semantics:
- transmodel: none
type: object
description: bank account
additionalProperties: false
required:
- name
- number
properties:
name:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/shortString"
description: account name
number:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/shortString"
description: account number
country:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/country"
bankIdentification:
$ref: "TOMP-API-1-CORE.yaml#/components/schemas/shortString"
description: bank identification, like BIC code