-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.63 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="./libs/rapidoc-min.js"></script>
<title>BlueConic REST API</title>
<link rel="icon" type="image/x-icon" href="./static/favicon.png">
</head>
<body>
<rapi-doc id="doc"
render-style = "read"
show-header = "false"
heading-text = "BlueConic"
persist-auth = "true"
sort-tags = "true"
sort-endpoints-by = "summary"
allow-authentication = "true"
allow-spec-file-load = "false"
allow-spec-url-load = "false"
allow-spec-file-download = "true"
allow-advanced-search = "true"
allow-try = "true"
allow-server-selection = "true"
allow-schema-description-expand-toggle = "false"
fill-request-fields-with-example = "true"
persist-auth = "true"
schema-style="table"
theme = "light"
nav-bg-color = "#293C47"
bg-color = "#fff"
header-color="#293C47"
primary-color="#FED780"
regular-font="'Poppins', sans-serif">
<img slot="nav-logo" src="./static/logo.svg" style="height:32px"/>
<div id="versionSelectWrapper" style="font-family: var(--font-regular), sans-serif; color: white; position:absolute; bottom: 10px; left:10px;">
Version: <select id="versionSelect">
<option selected="selected" value="openapi_latest">R94 (Current)</option>
<option value="r93/openapi">R93</option>
<option value="r92/openapi">R92</option>
<option value="r91/openapi">R91</option>
<option value="r90/openapi">R90</option>
<option value="r89/openapi">R89</option>
</select>
</div>
</rapi-doc>
<script src="./scripts/main.js"></script>
</body>
</html>