File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 23
23
},
24
24
"basePath": "{{AppSubUrl}}/api/v1",
25
25
"paths": {
26
+ "/admin/orgs": {
27
+ "get": {
28
+ "produces": [
29
+ "application/json"
30
+ ],
31
+ "tags": [
32
+ "admin"
33
+ ],
34
+ "summary": "List all organizations",
35
+ "operationId": "adminGetAllOrgs",
36
+ "responses": {
37
+ "200": {
38
+ "$ref": "#/responses/OrganizationList"
39
+ },
40
+ "403": {
41
+ "$ref": "#/responses/forbidden"
42
+ }
43
+ }
44
+ }
45
+ },
26
46
"/admin/users": {
47
+ "get": {
48
+ "produces": [
49
+ "application/json"
50
+ ],
51
+ "tags": [
52
+ "admin"
53
+ ],
54
+ "summary": "List all organizations",
55
+ "operationId": "adminGetAllUsers",
56
+ "responses": {
57
+ "200": {
58
+ "$ref": "#/responses/UserList"
59
+ },
60
+ "403": {
61
+ "$ref": "#/responses/forbidden"
62
+ }
63
+ }
64
+ },
27
65
"post": {
28
66
"consumes": [
29
67
"application/json"
You can’t perform that action at this time.
0 commit comments