Selling
Stripe
Webhook Setup (non-connect account)
login to the dashbaord in the search box, enter "api keys" copy both the publishable key and secret keys to the webtix config in the following section (live keys, not test) if (!$usestripeconnect) { // setup the test api keys $cstage\['stripe keys']\['test'] = array(); $cstage\['stripe keys']\['test']\['secret'] = "sk test "; $cstage\['stripe keys']\['test']\['publish'] = "pk test "; $cstage\['stripe webhook secret'] = 'whsec '; // setup the live api keys $cstage\['stripe keys']\['live'] = array(); $cstage\['stripe keys']\['live']\['secret'] = "sk live "; $cstage\['stripe keys']\['live']\['publish'] = "pk live "; } in the search box, search for "webhooks" click "add destination" select events (long page, so be sure to scroll down) events from your account api version latest events note do not select all as stripe states that doing all can cause performance issues charge \[all]webhooks customer cash balance transaction \[all] customer \[all] invoice \[all] payment intent \[all] terminal \[all] there should be around 63 69 or so selected click next destination type webhook endpoint configure destination destination name center stage software endpoint url https //webhooks centerstage com/stripe?schema name={instance} instance will match the url name for webtix for example montevista csstixcom =>montevista create destination after it is created, view open the webhook destination and copy value of "signing secret" and put it into the 'stripe webhook secret'
