MonoCloud Management SDK
    Preparing search index...

    Interface ApiAccessPolicyActions

    API Access Policy Actions Response: Represents the action settings applied when an API access policy rule matches.

    ApiAccessPolicyActions

    interface ApiAccessPolicyActions {
        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.

    ApiAccessPolicyActions

    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.

    ApiAccessPolicyActions

    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.

    ApiAccessPolicyActions

    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.

    ApiAccessPolicyActions

    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.

    ApiAccessPolicyActions