Definition

POST - webhooks/event/ApiRequest/ThrottlingLimitReached

Occurs the first time the API throttling limit is reached for your account.

Response information


MaxRequests

The maximum amount of requests allowed per period


Type integer
Period

Minute or Day throttling limit reached


Type string
RetryAfter

The time to wait until your requests will be handled again


Type time interval
WebhookId

The id of the webhook which triggered this request


Type integer
EventName

The EventName which triggered this request


Type string
Links

HATEOAS related to this object. It wil contain relevant url's such as previous and next page for paged results, create/update/delete action. These url's can be used in your application for the next steps in your application logic.


Type Hateoas
Sample:
{
  "MaxRequests": 1,
  "Period": "sample string 2",
  "RetryAfter": "00:00:00.1234567",
  "WebhookId": 4,
  "EventName": "sample string 5"
}
Sample:
<ApiThrottlingLimitReachedResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
  <EventName>sample string 5</EventName>
  <WebhookId>4</WebhookId>
  <MaxRequests>1</MaxRequests>
  <Period>sample string 2</Period>
  <RetryAfter>PT0.1234567S</RetryAfter>
</ApiThrottlingLimitReachedResult>