Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated OAS update: openapi.yaml
Browse files Browse the repository at this point in the history
kong-apiops committed Nov 23, 2023
1 parent 4afe942 commit c30cf6d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
@@ -251,6 +251,40 @@ paths:
- credentials
security:
- portalAccessToken: []
/api/v2/applications/{applicationId}/product-versions/{productVersionId}/granted-scopes:
get:
x-unstable: true
summary: Get the granted scopes
description: >-
**Pre-release Endpoint**
This endpoint is currently in beta and is subject to change.
Retrieves the granted scopes of a specified application and product
version directly from the IDP.
Scopes shared between product versions will be returned, even if not
currently registered for given product version.
Will return 409 if this feature is not supported by the application.
operationId: get-application-product-version-granted-scopes
parameters:
- $ref: '#/components/parameters/ApplicationId'
- $ref: '#/components/parameters/ProductVersionId'
responses:
'200':
$ref: '#/components/responses/GetGrantedScopesProductVersion'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
tags:
- applications
security:
- portalAccessToken: []
/api/v2/applications/{applicationId}/refresh-token:
post:
summary: Refresh Client Secret
@@ -3142,6 +3176,12 @@ components:
application/json:
schema:
$ref: '#/components/schemas/ApplicationUpdateResponse'
GetGrantedScopesProductVersion:
description: Get granted scopes response.
content:
application/json:
schema:
$ref: '#/components/schemas/GetGrantedScopesProductVersionResponse'
BadRequest:
description: Bad Request
content:

0 comments on commit c30cf6d

Please sign in to comment.