To protect the API back-end (ELIX360 platform) against severe traffic spikes and denial of service attacks (i.e. excessive number of requests in a limited period of time), each application is allowed to invoke the "SKU GET" API a maximum of 10 calls every second.
If your application exceeds this limit, the API would return a 429 error, with this explicit response body:
{ "error": { "code": "429", "reason": "Too many requests received in a limited period of time", "message": "Too many requests sent." }
This limit aims to limit the traffic spikes (or bursts). Contrary to a "quota" (which cumulates a total number of calls until it is reset at a specific time), this limit evaluates a "request rate" on the second scale.