MonoCloud Management SDK
    Preparing search index...

    Interface CreateScopeRequest

    Create Scope Request: Creates an identity scope that defines a permission for accessing user claims.

    CreateScopeRequest

    interface CreateScopeRequest {
        description?: string | null;
        display_name?: string | null;
        emphasize?: boolean;
        name: string;
        required?: boolean;
        show_in_discovery_document?: boolean;
        user_claims: CreateScopeClaimRequest[];
    }
    Index

    Properties

    description?: string | null

    Description that explains the purpose of the resource.

    CreateScopeRequest

    display_name?: string | null

    Human-readable display name for the resource.

    CreateScopeRequest

    emphasize?: boolean

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

    CreateScopeRequest

    name: string

    The unique name of the scope. This is the value a client will use for the scope parameter in the authorize request.

    CreateScopeRequest

    required?: boolean

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

    CreateScopeRequest

    show_in_discovery_document?: boolean

    Indicates whether this resource is advertised via the discovery document.

    CreateScopeRequest

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

    CreateScopeRequest