Create Customer Tag

Applies a tag to a customer. If a tag does not exist with the name, it will make a new one.

You can tag your customers manually in the CrowdPower console, but if you would like to tag a customer automatically with the JavaScript Tag, you can do so using the following method. If no tag exists in your project, it will create a new one for you, and then apply it to the customer.

<script>
  window.cp('tag', {
    name: '<tag_name>', // The name of the tag
  });
</script>

Last updated