MonoCloud Management SDK
    Preparing search index...

    Interface PatchScopeClaimRequest

    Patch Scope Claim Request: Used to update a user claim that can be included in ID tokens and the UserInfo endpoint when the scope is granted.

    PatchScopeClaimRequest

    interface PatchScopeClaimRequest {
        claim: string;
        include_in_identity_token?: boolean;
        include_in_user_info?: boolean;
    }
    Index

    Properties

    claim: string

    The name of the user claim granted by this scope.

    PatchScopeClaimRequest

    include_in_identity_token?: boolean

    Indicates whether this claim is included in the issued ID token when the scope is granted.

    PatchScopeClaimRequest

    include_in_user_info?: boolean

    Indicates whether this claim is returned by the UserInfo endpoint when the scope is granted.

    PatchScopeClaimRequest