MonoCloud Management SDK
    Preparing search index...

    Interface PatchAppleAuthenticatorOptionsRequest

    Patch Apple Authenticator Options Request: Used to partially update Sign in with Apple configuration and behavior.

    PatchAppleAuthenticatorOptionsRequest

    interface PatchAppleAuthenticatorOptionsRequest {
        client_id?: string | null;
        client_secret?: string | null;
        enable_sign_in?: boolean;
        enable_sign_up?: boolean;
        key_id?: string | null;
        scopes?: string[];
        sync_user_profile_always?: boolean;
        team_id?: string | null;
        trust_email_verified_scope?: boolean;
        use_internal_keys?: boolean;
    }
    Index

    Properties

    client_id?: string | null

    The client identifier issued by the external identity provider.

    PatchAppleAuthenticatorOptionsRequest

    client_secret?: string | null

    The client secret issued by the external identity provider.

    PatchAppleAuthenticatorOptionsRequest

    enable_sign_in?: boolean

    Specifies whether users can sign in using this external identity provider.

    PatchAppleAuthenticatorOptionsRequest

    enable_sign_up?: boolean

    Specifies whether new users can sign up using this external identity provider.

    PatchAppleAuthenticatorOptionsRequest

    key_id?: string | null

    The Apple Key ID used to sign the client secret for Sign in with Apple.

    PatchAppleAuthenticatorOptionsRequest

    scopes?: string[]

    The set of scopes requested from the external identity provider during authentication.

    PatchAppleAuthenticatorOptionsRequest

    sync_user_profile_always?: boolean

    Specifies whether the user profile should be synchronized from the external provider on each successful sign-in.

    PatchAppleAuthenticatorOptionsRequest

    team_id?: string | null

    The Apple Developer Team ID associated with the Sign in with Apple configuration.

    PatchAppleAuthenticatorOptionsRequest

    trust_email_verified_scope?: boolean

    Specifies whether the email_verified claim from Apple is trusted.

    When enabled, MonoCloud skips email verification if Apple reports the email as verified.

    PatchAppleAuthenticatorOptionsRequest

    use_internal_keys?: boolean

    Specifies whether MonoCloud-managed client credentials should be used to authenticate with the external identity provider.

    PatchAppleAuthenticatorOptionsRequest