-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleCRM_apigw-dev-swagger.yaml
48 lines (48 loc) · 1.08 KB
/
SimpleCRM_apigw-dev-swagger.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
---
swagger: "2.0"
info:
description: A simple CRM API that manages operations to list, create, update, and delete customer entries.
version: "2021-11-09T09:20:09Z"
title: "SimpleCRM_apigw"
host: "ud3k3mpal4.execute-api.ap-southeast-2.amazonaws.com"
basePath: "/dev"
schemes:
- "https"
paths:
/Customers:
get:
produces:
- "application/json"
responses:
"200":
description: "200 response"
schema:
$ref: "#/definitions/Empty"
post:
produces:
- "application/json"
responses:
"200":
description: "200 response"
schema:
$ref: "#/definitions/Empty"
delete:
produces:
- "application/json"
responses:
"200":
description: "200 response"
schema:
$ref: "#/definitions/Empty"
patch:
produces:
- "application/json"
responses:
"200":
description: "200 response"
schema:
$ref: "#/definitions/Empty"
definitions:
Empty:
type: "object"
title: "Empty Schema"