@@ -4,6 +4,13 @@ components:
44 headers: {}
55 links: {}
66 parameters:
7+ APIKeyCategoryParameter:
8+ description: Filter API keys by category.
9+ in: query
10+ name: filter[category]
11+ required: false
12+ schema:
13+ type: string
714 APIKeyFilterCreatedAtEndParameter:
815 description: Only include API keys created on or before the specified date.
916 in: query
@@ -59,6 +66,13 @@ components:
5966 schema:
6067 example: created_by,modified_by
6168 type: string
69+ APIKeyReadConfigReadEnabledParameter:
70+ description: Filter API keys by remote config read enabled status.
71+ in: query
72+ name: filter[remote_config_read_enabled]
73+ required: false
74+ schema:
75+ type: boolean
6276 APIKeysSortParameter:
6377 description: 'API key attribute used to sort results. Sort order is ascending
6478
@@ -16731,6 +16745,41 @@ components:
1673116745 required:
1673216746 - data
1673316747 type: object
16748+ TeamsField:
16749+ description: Supported teams field.
16750+ enum:
16751+ - id
16752+ - name
16753+ - handle
16754+ - summary
16755+ - description
16756+ - avatar
16757+ - banner
16758+ - visible_modules
16759+ - hidden_modules
16760+ - created_at
16761+ - modified_at
16762+ - user_count
16763+ - link_count
16764+ - team_links
16765+ - user_team_permissions
16766+ type: string
16767+ x-enum-varnames:
16768+ - ID
16769+ - NAME
16770+ - HANDLE
16771+ - SUMMARY
16772+ - DESCRIPTION
16773+ - AVATAR
16774+ - BANNER
16775+ - VISIBLE_MODULES
16776+ - HIDDEN_MODULES
16777+ - CREATED_AT
16778+ - MODIFIED_AT
16779+ - USER_COUNT
16780+ - LINK_COUNT
16781+ - TEAM_LINKS
16782+ - USER_TEAM_PERMISSIONS
1673416783 TeamsResponse:
1673516784 description: Response with multiple teams
1673616785 properties:
@@ -17365,8 +17414,8 @@ components:
1736517414 description: User team permission attributes
1736617415 properties:
1736717416 permissions:
17368- description: Object of team permission actions and boolean values indicating
17369- of the currently logged in user can perform them on this team
17417+ description: Object of team permission actions and boolean values that a
17418+ logged in user can perform on this team.
1737017419 readOnly: true
1737117420 type: object
1737217421 type: object
@@ -17621,6 +17670,8 @@ paths:
1762117670 - $ref: '#/components/parameters/APIKeyFilterModifiedAtStartParameter'
1762217671 - $ref: '#/components/parameters/APIKeyFilterModifiedAtEndParameter'
1762317672 - $ref: '#/components/parameters/APIKeyIncludeParameter'
17673+ - $ref: '#/components/parameters/APIKeyReadConfigReadEnabledParameter'
17674+ - $ref: '#/components/parameters/APIKeyCategoryParameter'
1762417675 responses:
1762517676 '200':
1762617677 content:
@@ -18053,6 +18104,7 @@ paths:
1805318104 - $ref: '#/components/parameters/ApplicationKeyFilterParameter'
1805418105 - $ref: '#/components/parameters/ApplicationKeyFilterCreatedAtStartParameter'
1805518106 - $ref: '#/components/parameters/ApplicationKeyFilterCreatedAtEndParameter'
18107+ - $ref: '#/components/parameters/ApplicationKeyIncludeParameter'
1805618108 responses:
1805718109 '200':
1805818110 content:
@@ -18934,6 +18986,7 @@ paths:
1893418986 - $ref: '#/components/parameters/ApplicationKeyFilterParameter'
1893518987 - $ref: '#/components/parameters/ApplicationKeyFilterCreatedAtStartParameter'
1893618988 - $ref: '#/components/parameters/ApplicationKeyFilterCreatedAtEndParameter'
18989+ - $ref: '#/components/parameters/ApplicationKeyIncludeParameter'
1893718990 responses:
1893818991 '200':
1893918992 content:
@@ -23702,6 +23755,12 @@ paths:
2370223755 required: false
2370323756 schema:
2370423757 type: string
23758+ - description: Filter all roles by the given list of role IDs.
23759+ in: query
23760+ name: filter[id]
23761+ required: false
23762+ schema:
23763+ type: string
2370523764 responses:
2370623765 '200':
2370723766 content:
@@ -26422,12 +26481,14 @@ paths:
2642226481 - description: Specifies the order of the returned teams
2642326482 in: query
2642426483 name: sort
26484+ required: false
2642526485 schema:
2642626486 $ref: '#/components/schemas/ListTeamsSort'
2642726487 - description: 'Included related resources optionally requested. Allowed enum
2642826488 values: `team_links, user_team_permissions`'
2642926489 in: query
2643026490 name: include
26491+ required: false
2643126492 schema:
2643226493 items:
2643326494 $ref: '#/components/schemas/ListTeamsInclude'
@@ -26436,13 +26497,23 @@ paths:
2643626497 member
2643726498 in: query
2643826499 name: filter[keyword]
26500+ required: false
2643926501 schema:
2644026502 type: string
2644126503 - description: When true, only returns teams the current user belongs to
2644226504 in: query
2644326505 name: filter[me]
26506+ required: false
2644426507 schema:
2644526508 type: boolean
26509+ - description: List of fields that need to be fetched.
26510+ in: query
26511+ name: fields[team]
26512+ required: false
26513+ schema:
26514+ items:
26515+ $ref: '#/components/schemas/TeamsField'
26516+ type: array
2644626517 responses:
2644726518 '200':
2644826519 content:
@@ -26837,11 +26908,13 @@ paths:
2683726908 - description: Specifies the order of returned team memberships
2683826909 in: query
2683926910 name: sort
26911+ required: false
2684026912 schema:
2684126913 $ref: '#/components/schemas/GetTeamMembershipsSort'
2684226914 - description: Search query, can be user email or name
2684326915 in: query
2684426916 name: filter[keyword]
26917+ required: false
2684526918 schema:
2684626919 type: string
2684726920 responses:
0 commit comments