CrowdPower
  • 👋Introduction
  • ✅Getting Started
    • The Basics
    • JavaScript Tag
      • Identify Customer
      • Create Customer Event
      • Create Customer Charge
      • Create Customer Tag
      • Create Page View
      • Prompt for Push
    • Beacon API
      • Identify Customer
      • Create Customer Event
      • Create Customer Charge
      • Create Customer Tag
      • Track
    • Importing Customers
    • Basic Email Setup
    • Advanced Email Setup
  • 📚Resources
    • Smart Sending
    • Working with Sessions
    • Working with Traits
    • Working with Phone Numbers
    • Personalizing Messages
    • Push Notifications
    • Unsubscribe Groups
  • 🔌Integrations
    • Discord
    • Slack
    • Stripe
    • Zapier
  • REST API
  • Console
Powered by GitBook
On this page
  • Create Customer Tag
  • Create Multiple Customer Tags

Was this helpful?

  1. Getting Started
  2. Beacon API

Create Customer Tag

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

Create Customer Tag

POST https://beacon.crowdpower.io/tags

Request Body

Name
Type
Description

user_id*

string

The unique ID for the user.

name*

string

The name of the tag.

email

string

The user’s email address. Required if user_id is not present.

update_session

boolean

Whether or not to update the user’s session. Defaults to true.

{
  "success": true,
  "code": 200,
  "data": null
}

Create Multiple Customer Tags

POST https://beacon.crowdpower.io/tags/bulk

Request Body

Name
Type
Description

user_id*

string

The unique ID for the user.

tags*

array

An array of tag objects.

email

string

The user’s email address. Required if user_id is not present.

PreviousCreate Customer ChargeNextTrack

Last updated 3 years ago

Was this helpful?

✅