We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7dd6d1 + fb126be commit 81b3092Copy full SHA for 81b3092
README.md
@@ -332,6 +332,15 @@ $client->notes->getNotes([
332
// Get a single Note by id
333
$client->notes->getNote("42");
334
```
335
+## Rate Limits
336
+Rate limit info is passed via the rate limit headers.
337
+You can access this information as follows:
338
+```
339
+$rate_limit = $intercom->getRateLimitDetails();
340
+print("{$rate_limit['remaining']} {$rate_limit['limit']} \n");
341
+print_r($rate_limit['reset_at']->format(DateTime::ISO8601));
342
343
+For more info on rate limits and these headers please see the [API ref docs](https://developers.intercom.com/reference#rate-limiting)
344
345
## Pagination
346
0 commit comments