Passer au contenu principal
GET
https://{tenantDomain}/api/v2
/
rate-limit-policies
/
{id}
Get a rate limit policy
curl --request GET \
  --url https://{tenantDomain}/api/v2/rate-limit-policies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

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.

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

Unique identifier for the Rate Limit Policy.

Maximum string length: 26

Réponse

Rate limit policy retrieved successfully.

id
string<rate-limit-policy-id>
requis

Unique identifier for the Rate Limit Policy.

Maximum string length: 26
resource
enum<string>
requis

The API protected by the Rate Limit Policy.

Options disponibles:
oauth_authentication_api
consumer
enum<string>
requis

The consumer to which the rate limit policy applies.

Options disponibles:
client
consumer_selector
string
requis

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
configuration
object
requis

The configuration of the rate limit policy.

created_at
string<date-time>

The date and time when the rate limit policy was created.

updated_at
string<date-time>

The date and time when the rate limit policy was last updated.