diff --git a/hooks/stripe_hook.py b/hooks/stripe_hook.py index 570b301..53d09f1 100755 --- a/hooks/stripe_hook.py +++ b/hooks/stripe_hook.py @@ -49,7 +49,7 @@ def run_query(self, method_to_call = 'all' if replication_key_value: stripe_response = getattr(stripe_endpoint, method_to_call)( - ending_before=replication_key_value, **kwargs) + starting_after=replication_key_value, **kwargs) else: stripe_response = getattr(stripe_endpoint, method_to_call)(**kwargs)