list members of organization handler (#537)

This commit is contained in:
Michael Quigley
2024-12-09 14:21:49 -05:00
parent 4473571b37
commit 6fb69c59d2
18 changed files with 282 additions and 22 deletions

View File

@ -950,7 +950,7 @@ func init() {
}
}
},
"/organization/members": {
"/organization/list": {
"post": {
"security": [
{
@ -995,6 +995,9 @@ func init() {
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error"
}
@ -3007,7 +3010,7 @@ func init() {
}
}
},
"/organization/members": {
"/organization/list": {
"post": {
"security": [
{
@ -3048,6 +3051,9 @@ func init() {
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error"
}