-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.json
68 lines (68 loc) · 1.86 KB
/
swagger.json
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
{
"openapi": "3.0.3",
"info": {
"title": "StreamDeck API Server - OpenAPI Spec",
"description": "This is the OpenAPI specification for the StreamDeck API Server. This API server is used to control the Unreal Engine using the StreamDeck plugin.",
"version": "1.0.0"
},
"servers": [
{
"url": "http://localhost:2206/api/v1"
}
],
"paths": {
"/health": {
"get": {
"description": "Returns some basic information about the Unreal Engine",
"responses": {
"200": {
"description": "Default success response",
"content": {
"application/json": {
"example": {
"data": {
"Engine": {
"Version": "4.26.2"
},
"Memory": {
"Available": 68719476736,
"Used": 35181692437
},
"Plugin": {
"Name": "MadDevRemote",
"Version": "1.0.0",
"Author": "Copyright (c) 2024 - Mad Dev Games. All Rights Reserved."
}
},
"code": 200,
"message": "OK",
"success": true
}
}
}
}
}
}
},
"/command": {
"post": {
"description": "Runs a command in the Unreal Engine",
"responses": {
"200": {
"description": "Default success response",
"content": {
"application/json": {
"example": {
"data": {},
"code": 200,
"message": "Command executed",
"success": true
}
}
}
}
}
}
}
}
}