Struggling to figure out why our automated segmentation job is hitting a hard 429 Too Many Requests limit when calling POST /api/v2/analytics/segments via the platform API.
The AppFoundry integration is configured with a Premium App tier, which should theoretically allow for higher throughput than standard limits. We are processing approximately 50 segment definitions per minute across multiple organizations using multi-org OAuth tokens. The error response indicates that the rate limit has been exceeded, yet the X-RateLimit-Remaining header in previous successful calls showed ample capacity.
Critical detail: The issue persists even when we implement exponential backoff logic. It seems the rate limit counter does not reset as expected between different org contexts, or perhaps the Premium App entitlement is not correctly applied to this specific endpoint.
Has the rate limiting behavior for analytics segment creation changed recently? We are using the latest SDK version (v1.0.45) and have verified that our OAuth scopes include analytics:all. Any insights into how the rate limit window is calculated for bulk operations would be appreciated.