> For the complete documentation index, see [llms.txt](https://docs.crowdpower.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.crowdpower.io/getting-started/javascript-tag/create-customer-charge.md).

# Create Customer Charge

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.

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