#Picklepaws - Subscription Schedule
1 messages ยท Page 1 of 1 (latest)
Hi ๐
The first ID example you shared is the Subscription Schedule. The Schedule object includes a subscription parameter which is the ID of the Subscription object being managed by the Schedule.
https://stripe.com/docs/api/subscription_schedules/object
Okay and if the subscription is null on the Subscription Schedule, when can I expect it to be created? On the next invoice?
If the subscription ID is null then the subscription has not been created yet for that schedule
But it would be created when the first invoice is generated. You could also use webhooks and listen from customer.subscription.created to get notified when the Subscription is created.
Gotcha - thanks very much!