stripity_stripe v1.6.0 Stripe.Events
Main API for working with Events at Stripe. Through this API you can: -list/search events (last 30 days guaranteed to be available) -retrieve event from id -count number of events stored currently on stripe
Summary
Functions
Count events.
Example
Count events using given key.
Example
Retrieves a given Event with the specified ID. Returns 404 if not found.
Example
Retrieves a given Event with the specified ID using that key(account). Returns 404 if not found.
Example
Returns a list of events
Returns a list of events using given stripe key
Functions
Retrieves a given Event with the specified ID. Returns 404 if not found.
Example
Stripe.Events.get "event_id"
Retrieves a given Event with the specified ID using that key(account). Returns 404 if not found.
Example
{:ok, event} = Stripe.Events.get key, "event_id"
Returns a list of events
Example
{:ok, events} = Stripe.Events.list "starting_after", limit // 10