MonoCloud Management SDK
    Preparing search index...

    Interface PatchScopeRequest

    Patch Scope Request: Used to update one or more properties of an existing scope.

    PatchScopeRequest

    interface PatchScopeRequest {
        description?: string | null;
        display_name?: string | null;
        emphasize?: boolean;
        required?: boolean;
        show_in_discovery_document?: boolean;
        user_claims?: PatchScopeClaimRequest[];
    }
    Index

    Properties

    description?: string | null

    Description that explains the purpose of the resource.

    PatchScopeRequest

    display_name?: string | null

    Human-readable display name for the resource.

    PatchScopeRequest

    emphasize?: boolean

    Indicates whether this scope is visually emphasized on the consent screen, typically for sensitive or high-impact permissions.

    PatchScopeRequest

    required?: boolean

    Specifies whether the scope is mandatory and cannot be de-selected by the user on the consent screen.

    PatchScopeRequest

    show_in_discovery_document?: boolean

    Indicates whether this resource is advertised via the discovery document.

    PatchScopeRequest

    user_claims?: PatchScopeClaimRequest[]

    List of user claim types that will be embedded into identity tokens and/or returned from the UserInfo endpoint when this scope is granted.

    PatchScopeRequest