initial implementation of 'orgAccountOverview' (#537)

This commit is contained in:
Michael Quigley
2024-12-10 11:46:01 -05:00
parent 7c17cce8f0
commit 65104e9e18
17 changed files with 1313 additions and 6 deletions

View File

@ -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": [