docs: add Stripe account API version prerequisite to stripe-realtime#3024
Closed
jwhartley wants to merge 1 commit into
Closed
docs: add Stripe account API version prerequisite to stripe-realtime#3024jwhartley wants to merge 1 commit into
jwhartley wants to merge 1 commit into
Conversation
The connector lists subscriptions with status=all, which Stripe accounts pinned to a default API version older than 2016-07-06 reject with 'Invalid status: must be one of ...', failing the Subscriptions, SubscriptionItems, and UsageRecords backfills. Document the minimum account API version and how to upgrade it.
|
🚀 Preview deployed to https://docs.estuary.dev/pr-preview/pr-3024/ 📄 Changed pages: |
Collaborator
|
Is there anything still unresolved for this following #3055? |
Contributor
Author
|
#3055 covers adding the option and info, all set here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The source-stripe-native connector lists subscriptions with
status=allso canceled subscriptions are captured too. Stripe accounts whose default API version is older than 2016-07-06 reject that filter withInvalid status: must be one of active, past_due, unpaid, ..., which crash-loops the Subscriptions, SubscriptionItems, and UsageRecords backfills. The connector doesn't pin aStripe-Versionheader, so the account default applies (same failure mode as stripe/stripe-python#687).This hit a user in support this week and the prerequisites only mentioned the API key, so this adds the minimum account API version, the symptom to recognize it by, and where to upgrade in the Stripe dashboard.