Problemunvalidated
I have successfully created checkout sessions and webhooks. Now I have stored $SubscriptionID and want to check the status of my subscription with Stripe. Tension: the call `$stripe = new \Stripe\StripeClient($secretKey);` creates a Stripe client. This lets you access all the API methods. It doesn't store any information about the responses to various API requests. Outcome: What you need to store is store the returned value of each call.
f871cd33-db84-42b7-9a3d-8badd7f30674
I have successfully created checkout sessions and webhooks. Now I have stored $SubscriptionID and want to check the status of my subscription with Stripe. Tension: the call $stripe = new \Stripe\StripeClient($secretKey); creates a Stripe client. This lets you access all the API methods. It doesn't store any information about the responses to various API requests. Outcome: What you need to store is store the returned value of each call.