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

Was this helpful?

  1. Getting Started
  2. Beacon API

Track

The track endpoint is a newer endpoint that can be used to create or update customers, and also send events, charges, and tags in for them using one single API call.

Create Customers, Events, Charges, Tags

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

Request Body

Name
Type
Description

customers*

array

An array of customer objects.

customers.*.events

array

An array of event objects.

customers.*.charges

array

An array of charge objects.

customers.*.tags

array

An array of tag objects.

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

PreviousCreate Customer TagNextImporting Customers

Last updated 3 years ago

Was this helpful?

✅