Create Customer Charge

Creates a new charge for the customer and updates their charge summary.

If you would like to manually record charges vs. connecting your Stripe account, you can call the charge method. This method takes 1 argument, which is the amount that was charged in the smallest currency unit. CrowdPower has a built in way of keeping track of charge summaries, which can be used to target specific customers in your automations.

<script>
  window.cp('charge', {
    amount: '<amount>', // Amount in smallest currency unit
  });
</script>

Last updated