Skip to content

Quota exceeded response

Cristi Pufu edited this page Mar 13, 2019 · 1 revision

You can customize the throttled response using the QuotaExceededResponse property of the IpRateLimiting or ClientRateLimiting configuration sections:

"IpRateLimiting": {

    "QuotaExceededResponse": {
      "Content": "{{ \"message\": \"Whoa! Calm down, cowboy!\", \"details\": \"Quota exceeded. Maximum allowed: {0} per {1}. Please try again in {2} second(s).\" }}",
      "ContentType": "application/json",
      "StatusCode": 429
    },

}
  • {0} - rule.Limit
  • {1} - rule.Period
  • {2} - retryAfter
Clone this wiki locally