Portal Developer Applications (3.0.1)

Download OpenAPI specification:Download

N/A (this description is removed during bundling)

Applications

The API for Konnect Portal developer applications within a private portal (i.e. requires registration/authentication). When a portal is in public mode, all of the described endpoints will return a 404 error. A public portal means that applications and registrations are not available/needed. In this API's context, "you" and "your" refers to the developer consuming the API.

Get granted scopes

Retrieves the granted scopes of a specified application and API directly from the IDP. Scopes shared between APIs will be returned, even if not currently registered for given API. Will return 422 if this feature is not supported by the application.

Authorizations:
portalAccessToken
path Parameters
applicationId
required
string <uuid>

Id of the targeted application

Responses

Response samples

Content type
application/json
{
  • "scopes": [
    ]
}

Credentials

The API for Konnect Portal developer credentials within a private portal (i.e. requires registration/authentication).

Refresh Client Secret

Resets the client secret for an application.

Authorizations:
portalAccessToken
path Parameters
applicationId
required
string <uuid>

Id of the targeted application

Responses

Response samples

Content type
application/json
{
  • "client_id": "string",
  • "client_secret": "string"
}