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

NameTypeDescription

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

NameTypeDescription

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.

Last updated