Comment #⁨2⁩

Answer
Toby Toby Waterhole Founder Jun 4, 2023

Yep, @Wulfheart is correct. Waterhole doesn't currently support any integration with Zapier or Trigger – though a JSON API is on the roadmap which would potentially make these possible.

For now, the recommended way would be to write some Laravel code to listen for a Stripe webhook and then add the Waterhole user to the desired group:

use Waterhole\Models\User;

$user = User::where('email', $email)->firstOrFail();
$user->groups()->attach(5);