mirror of
https://github.com/openziti/zrok.git
synced 2025-08-15 10:32:33 +02:00
initial implementation of 'orgAccountOverview' (#537)
This commit is contained in:
@ -1127,6 +1127,47 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"/overview/{organizationToken}/{accountEmail}": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"key": []
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"metadata"
|
||||
],
|
||||
"operationId": "orgAccountOverview",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"name": "organizationToken",
|
||||
"in": "path",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "accountEmail",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "ok",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/overview"
|
||||
}
|
||||
},
|
||||
"404": {
|
||||
"description": "not found"
|
||||
},
|
||||
"500": {
|
||||
"description": "internal server error"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/regenerateToken": {
|
||||
"post": {
|
||||
"security": [
|
||||
@ -3232,6 +3273,47 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"/overview/{organizationToken}/{accountEmail}": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"key": []
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"metadata"
|
||||
],
|
||||
"operationId": "orgAccountOverview",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"name": "organizationToken",
|
||||
"in": "path",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "accountEmail",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "ok",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/overview"
|
||||
}
|
||||
},
|
||||
"404": {
|
||||
"description": "not found"
|
||||
},
|
||||
"500": {
|
||||
"description": "internal server error"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/regenerateToken": {
|
||||
"post": {
|
||||
"security": [
|
||||
|
Reference in New Issue
Block a user