POST /work_orders — hitting 429 after ~50 sequential creates. Docs mention 100/min but no burst behavior specified. Need to push 5K records for migration.
Current approach:
for record in dataset:
POST /work_orders
sleep(0.6) # naive rate limitStill throttled. What's the actual window? Token bucket vs fixed window? Retry-After header sometimes missing.
Also: any batch endpoint planned? Single-request payload limits?