forked from ONSdigital/onse-cashier-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yml
95 lines (91 loc) · 2.21 KB
/
swagger.yml
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
---
swagger: "2.0"
info:
version: 1.0.0
title: Cashier Service API
description: An API for cashier service
host: "localhost:5000"
schemes:
- http
paths:
/health:
get:
summary: Check the health of the service
description: Returns a message indicating the health of the service
produces:
- application/json
responses:
200:
description: Service is up and running
schema:
type: object
properties:
message:
type: string
description: Contains the string "OK"
/cashier/create/:
post:
summary: |
Creates a new debit or credit operation for a given account.
description: Provide a service to deposit and withdrawn money
produces:
- application/json
parameters:
- in: body
name: body
required: true
description: Data relating to the event at the point-of-time
schema:
$ref: "#/definitions/Cashier"
responses:
202:
description: Received was received ok and will process shortly.
schema:
$ref: "#/definitions/Response"
404:
description: Operation failed
definitions:
Cashier:
type: object
properties:
accountNumber:
type: string
description: Account name
amount:
type: integer
description: Amount to credit/debit
operation:
type: string
description: Customer Surname
enum:
- debit
- credit
Response:
type: object
properties:
id:
type: string
description: UUID of the feed item
accountNumber:
type: string
description: Account Number
operation:
type: string
description: Customer Surname
enum:
- debit
- credit
amount:
type: string
description: Ammount authorized for action
created:
type: string
format: "date-time"
description: A descrite event that happen at a point in time
status:
type: string
description: Possible status values
enum:
- accepted
- authorized
- complete