Auth0 Node.js SDK - v5.12.0
    Preparing search index...

    Interface ListRateLimitPoliciesRequestParameters

    {
    * resource: "oauth_authentication_api",
    * consumer: "client",
    * consumer_selector: "consumer_selector",
    * take: 1,
    * from: "from"
    * }
    interface ListRateLimitPoliciesRequestParameters {
        resource?: "oauth_authentication_api" | null;
        consumer?: "client" | null;
        consumer_selector?: string | null;
        take?: number | null;
        from?: string | null;
    }
    Index

    Properties

    resource?: "oauth_authentication_api" | null

    The API protected by the Rate Limit Policy.

    consumer?: "client" | null

    The consumer to which the rate limit policy applies.

    consumer_selector?: string | null

    Identifier or category within the consumer to which the policy applies. Supported values: client_id:<client_id> to target a specific client by ID, client_id:<cimd_uri> to target a CIMD client by URI, cimd_clients to target all CIMD clients, third_party_clients to target all third-party clients, or default to apply the policy to any consumer identifier not otherwise explicitly targeted.

    take?: number | null

    Number of results per page. Defaults to 50.

    from?: string | null

    Cursor for pagination.