Skip to content
Snippets Groups Projects

update: add organization filter endpoint for working groups

Merged Martin Lowe requested to merge malowe/main/54 into main
1 unresolved thread
8 files
+ 148
25
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 26
1
@@ -174,7 +174,32 @@ paths:
$ref: "#/components/schemas/Error"
500:
description: Error while retrieving data
/organization/{id}:
parameters:
- name: id
in: path
description: The ID of the organization to retrieve working groups for
required: true
schema:
type: integer
get:
summary: Working Group by Organization ID
description: Returns working groups that the target organization is a member of
responses:
200:
description: Success
content:
application/json:
schema:
$ref: "#/components/schemas/WorkingGroups"
404:
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
500:
description: Error while retrieving data
components:
securitySchemes:
openId:
Loading