Can anyone clarify the correct backoff implementation for bulk user updates? I am hitting 429 errors with this Python snippet:
for user in users:
response = requests.put(url, json=data)
if response.status_code == 429:
# Immediate retry fails
pass
- Loop through 50 users
- PUT /api/v2/users/{id}
- Receive 429
What is the recommended delay strategy? Should I parse the Retry-After header or use a fixed exponential backoff?