#danliciouso
1 messages · Page 1 of 1 (latest)
yes sir
wana do smtg similar to recent activity in stripe customer's dashboard in my application
You can use the list event endpoint: https://stripe.com/docs/api/events/list
And use the undocumented parameter object_id to pass the customer ID.
so the param would be object_id,
something likethis ye?
\Stripe\Event::all(['object_id'=> "CUSTOMER_ID"]);
Yes
