Undocumented CRM API Rate Limit?
I have been working on a CRM API integration and today as I was running my test suite I started getting this response:
`{"code":"TOO_MANY_REQUESTS","details":{},"message":"Many requests fired than the allowed limit for a minute. Please check the header X-RATELIMIT-RESET for the reset time","status":"error"}`
So, I looked at the headers and here we are:
```
X-RATELIMIT-LIMIT: 50
X-RATELIMIT-REMAINING: 0
X-RATELIMIT-RESET: 1598879308011
```
The API Limits document does not mention a rate limit at all. Is there documentation for this, are we supposed to just magically know, or is it only in the CRM Developer Edition?