-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv1.yml
64 lines (62 loc) · 1.27 KB
/
v1.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
openapi: "3.0.0"
info:
version: "1.0"
title: OpenAPI 3.0 definition of WiFi API
servers:
- url: http://coderbot.local/v1
# Paths supported by the server application
paths:
/list_access_points:
get:
operationId: "api.list_access_points"
summary: "list Access Points"
responses:
200:
description: "ok"
tags:
- Wifi
/connection_status:
get:
operationId: "api.connection_status"
summary: "connection Status"
responses:
200:
description: "ok"
tags:
- Wifi
/connect:
post:
operationId: "api.connect"
summary: "connect"
responses:
200:
description: "ok"
tags:
- Wifi
/forget:
post:
operationId: "api.forget"
summary: "forget"
responses:
200:
description: "ok"
tags:
- Wifi
/sset_hotspot_ssid:
post:
operationId: "api.sset_hotspot_ssid"
summary: "sset_hotspot_ssid"
responses:
200:
description: "ok"
tags:
- Wifi
/set_hotspot_password:
post:
operationId: "api.set_hotspot_password"
summary: "set_hotspot_password"
responses:
200:
description: "ok"
tags:
- Wifi