List OAuth scopes

Returns a list of all OAuth scopes managed by the OAuth client.

GET
https://identity.krystal.io/api/v1/oauth_scopes

If successful, this endpoint will return a 200 OK status.

Scopes

One of the following scopes are required to use this endpoint.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    oauth_scopes: [ OAuthScope {
        name: String
        title: String
        description: String?
        read_only: Boolean
        restricted: Boolean
        sensitive: Boolean
        type: OAuthScopeTypeEnum
    } ]
}