#Mallain23
1 messages · Page 1 of 1 (latest)
The rate limits are based on API keys, not a single object
I've seen that, but it doesn't answer my question about a single subscription
Can you expand and provide more context? Are you running into any rate limit issues with updating subscriptions?
yes i am updating the same susbcription multiple times
and running into a rate limit
after like ~200 in dev
Can you share an example request where you're seeing this?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_FE7x426rseiM8S
Hmm i'm not aware of any limits specifically associated with subscriptions, taking a step back
What's your usecase of updating the subscription 200 times at a time?
We are processing adding employees to an account and we want to process one at at time so we can have good error handling/tracking
rather than doing a bulk update
I see. It seems like we have a limit for the max number of invoices per subscription per minute. Since you're setting proration_behavior: "always_invoice", it creates a new invoice each time
So I think a better approach might be to run batch updates every 10-15 minutes or so
ok gotcha