Merged
Conversation
This property is supposed to be present in the newer Stripe API version "basil": https://docs.stripe.com/api/invoices/object?api-version=2025-08-27.basil … and supposed to be absent in the older Stripe API version "acacia": https://docs.stripe.com/api/invoices/object?api-version=2025-02-24.acacia However, in practice it is returned by both (tested with `curl -H 'Stripe-Version: 2025-02-24.acacia` and `2025-08-27.basil`: there are differences, but `parent` is always present). Here is what is return by the real Stripe for an invoice that is generated in the context of a subscription: "parent": { "quote_details": null, "subscription_details": { "metadata": {}, "subscription": "sub_1SiWhdKxWWXl12QBvneJqzRY" }, "type": "subscription_details" } And for a draft invoice unrelated to any subscription: "parent": null This commit adapts localstripe to mimick this.
feliixx
approved these changes
Jan 26, 2026
bravier
approved these changes
Jan 26, 2026
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.
This property is supposed to be present in the newer Stripe API version "basil":
https://docs.stripe.com/api/invoices/object?api-version=2025-08-27.basil
… and supposed to be absent in the older Stripe API version "acacia": https://docs.stripe.com/api/invoices/object?api-version=2025-02-24.acacia
However, in practice it is returned by both (tested with
curl -H 'Stripe-Version: 2025-02-24.acaciaand2025-08-27.basil: there are differences, butparentis always present).Here is what is return by the real Stripe for an invoice that is generated in the context of a subscription:
And for a draft invoice unrelated to any subscription:
This commit adapts localstripe to mimick this.