Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add excludeSystemPortals query param for applications GET #4813

Merged
merged 8 commits into from
Oct 18, 2024
12 changes: 12 additions & 0 deletions en/asgardeo/docs/apis/organization-apis/restapis/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ paths:
- $ref: '#/components/parameters/sortOrderQueryParam'
- $ref: '#/components/parameters/sortByQueryParam'
- $ref: '#/components/parameters/attributesQueryParam'
- $ref: '#/components/parameters/excludeSystemPortalsQueryParam'
responses:
'200':
description: OK
Expand Down Expand Up @@ -345,6 +346,17 @@ components:
/applications?attributes=advancedConfigurations,templateId,clientId,issuer
schema:
type: string
excludeSystemPortalsQueryParam:
in: query
name: excludeSystemPortals
required: false
description: |
Specifies whether to include or exclude system portals in the response.
JeethJJ marked this conversation as resolved.
Show resolved Hide resolved
Default will be treated as false if parameter is not preset in the request.
JeethJJ marked this conversation as resolved.
Show resolved Hide resolved

/applications?excludeSystemPortals=true
schema:
type: boolean
exportSecretsQueryParam:
in: query
name: exportSecrets
Expand Down
12 changes: 12 additions & 0 deletions en/identity-server/next/docs/apis/restapis/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ paths:
- $ref: '#/components/parameters/sortOrderQueryParam'
- $ref: '#/components/parameters/sortByQueryParam'
- $ref: '#/components/parameters/attributesQueryParam'
- $ref: '#/components/parameters/excludeSystemPortalsQueryParam'
responses:
'200':
description: OK
Expand Down Expand Up @@ -3931,6 +3932,17 @@ components:
/applications?attributes=advancedConfigurations,templateId,templateVersion,clientId,issuer
schema:
type: string
excludeSystemPortalsQueryParam:
in: query
name: excludeSystemPortals
required: false
description: |
Specifies whether to include or exclude system portals in the response.
JeethJJ marked this conversation as resolved.
Show resolved Hide resolved
Default will be treated as false if parameter is not preset in the request.
JeethJJ marked this conversation as resolved.
Show resolved Hide resolved

/applications?excludeSystemPortals=true
schema:
type: boolean
exportSecretsQueryParam:
in: query
name: exportSecrets
Expand Down