MonoCloud Management SDK
    Preparing search index...

    Interface PatchApiAccessPolicyActionsRequest

    Patch API Access Policy Actions Request: Used to partially update action settings for an API access policy.

    PatchApiAccessPolicyActionsRequest

    interface PatchApiAccessPolicyActionsRequest {
        access_token_lifetime?: number | null;
        access_token_type?: AccessTokenTypes | null;
        allow_multi_audience?: boolean | null;
        allow_user_info_access?: boolean | null;
        bind_tokens_to_session?: boolean | null;
    }
    Index

    Properties

    access_token_lifetime?: number | null

    Overrides the access token lifetime (in seconds). When unset, the API resource default is used.

    PatchApiAccessPolicyActionsRequest

    access_token_type?: AccessTokenTypes | null

    Overrides whether access tokens are issued as self-contained JWTs or opaque reference tokens. When unset, the API resource default is used.

    ScaleX subscription required to use reference tokens. Reference tokens improve revocation control and reduce token exposure, but require protected resources to use token introspection.

    PatchApiAccessPolicyActionsRequest

    allow_multi_audience?: boolean | null

    Overrides whether access tokens issued for this resource may include additional audiences. When unset, the API resource default is used.

    ScaleX subscription required to allow multi-audience tokens.

    PatchApiAccessPolicyActionsRequest

    allow_user_info_access?: boolean | null

    Overrides whether access tokens issued for this resource may include identity scopes and be used with identity endpoints such as UserInfo. When unset, the API resource default is used.

    ScaleX subscription required to allow UserInfo access.

    PatchApiAccessPolicyActionsRequest

    bind_tokens_to_session?: boolean | null

    Overrides whether access tokens issued for this resource are bound to the user session and revoked when the session ends. When unset, the API resource default is used.

    ScaleX subscription required to use session binding.

    PatchApiAccessPolicyActionsRequest