-
Notifications
You must be signed in to change notification settings - Fork 32
/
swagger.yml
96 lines (89 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
96
---
swagger: "2.0"
info:
version: 1.0.0
title: Account Service API
description: An API to manage accounts
host: "localhost:5001"
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 OK
schema:
type: object
properties:
message:
type: string
description: Contains the string "OK"
/accounts/{accountNumber}:
get:
summary: Get the account details
description: Returns the details details
produces:
- application/json
parameters:
- name: accountNumber
in: path
required: true
description: Account number
type: string
x-example: '999999'
responses:
200:
description: Account details found
schema:
$ref: "#/definitions/Account"
404:
description: Account details not found
schema:
/accounts/:
post:
summary: Create a new account
description: Creates the account and returns the details
produces:
- application/json
parameters:
- name: customerId
type: integer
in: body
required: true
description: The customer to create the account for
x-example: '12345'
responses:
201:
description: Account was created
schema:
$ref: "#/definitions/Account"
400:
description: Bad payload or unknown customer
schema:
$ref: "#/definitions/Message"
415:
description: Bad Content-Type
schema:
$ref: "#/definitions/Message"
definitions:
Account:
type: object
properties:
accountNumber:
type: string
description: Account Number
accountStatus:
type: string
enum: [active, closed]
description: The account status
Message:
type: object
properties:
message:
type: string
description: Contains the message