Unkey · Schema

V2RatelimitSetOverrideResponseData

API KeysRate LimitingAuthenticationDeveloper PlatformAccess ControlIdentityAnalytics

Properties

Name Type Description
overrideId string The unique identifier for the newly created or updated rate limit override. This ID can be used to: - Reference this specific override in subsequent API calls - Delete or modify this override later -
View JSON Schema on GitHub

JSON Schema

unkey-v2ratelimitsetoverrideresponsedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/V2RatelimitSetOverrideResponseData",
  "title": "V2RatelimitSetOverrideResponseData",
  "type": "object",
  "properties": {
    "overrideId": {
      "description": "The unique identifier for the newly created or updated rate limit override. This ID can be used to:\n\n- Reference this specific override in subsequent API calls\n- Delete or modify this override later\n- Track which override is being applied in rate limit responses\n- Associate override effects with specific rules in analytics\n\nStore this ID if you need to manage the override in the future.",
      "type": "string"
    }
  },
  "required": [
    "overrideId"
  ]
}