メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
rate-limit-policies
Get rate limit policies
curl --request GET \
  --url https://{tenantDomain}/api/v2/rate-limit-policies \
  --header 'Authorization: Bearer <token>'
{
  "rate_limit_policies": [
    {
      "id": "<string>",
      "resource": "oauth_authentication_api",
      "consumer": "client",
      "consumer_selector": "<string>",
      "configuration": {
        "action": "allow"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://auth0-feat-custom-rate-limit-policies.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

クエリパラメータ

resource
enum<string>

The API protected by the Rate Limit Policy.

利用可能なオプション:
oauth_authentication_api
consumer
enum<string>

The consumer to which the rate limit policy applies.

利用可能なオプション:
client
consumer_selector
string

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.

Maximum string length: 255
take
integer

Number of results per page. Defaults to 50.

必須範囲: 1 <= x <= 100
from
string

Cursor for pagination.

Maximum string length: 1000

レスポンス

Rate limit policies retrieved successfully.

rate_limit_policies
object[]
next
string

A cursor to be used as the "from" query parameter for the next page of results.