Skip to contentSkip to navigationSkip to topbar
On this page
Looking for more inspiration?Visit the
(information)
You're in the right place! Segment documentation is now part of Twilio Docs. The content you are used to is still here—just in a new home with a refreshed look.

CrowdPower Destination


Destination Info
  • Accepts Page, Identify and Track calls.
  • Refer to it as CrowdPower in the Integrations object
  • This integration is partner owned. Please reach out to the partner's support for any issues.

CrowdPower(link takes you to an external page) is a growth marketing platform that enables businesses to track key customer actions and deliver automated tailored communications to drive sales and increase engagement.

This destination is maintained by CrowdPower. For any issues with the destination, contact the CrowdPower Support team.


Getting Started

getting-started page anchor
  1. From the Segment web app, click Catalog.
  2. Search for "CrowdPower" in the Catalog, select it, and choose which of your sources to connect the destination to.
  3. Enter the API Key into your Segment Settings UI which you can find from your CrowdPower Project Settings(link takes you to an external page).
  4. To find your CrowdPower API Key, go to the CrowdPower Console and click Settings in the sidebar menu. Use your CrowdPower project's Public Key as the API key for Segment.

If you're not familiar with the Segment Specs, take a look to understand what the Identify method does. An example call would look like:

1
analytics.identify('userId123', {
2
name: 'John Doe',
3
email: 'john.doe@example.com',
4
signed_up_at: 1583564043,
5
});

Identify calls in Segment create or update customers and their attributes in CrowdPower. Customer attributes may be used for creating segments. Your segments may be used as audiences for your marketing campaigns.

Date attributes should be sent as UNIX timestamps (UTC), and the keys should end in _at.


If you're not familiar with the Segment Specs, take a look to understand what the Track method does. An example call would look like:

1
analytics.track('Purchased Item', {
2
name: 'Cobb Salad',
3
sku: 'ABC123',
4
price: 1200,
5
})

Track calls in Segment create events for each customer in CrowdPower. Each event may have corresponding properties that may be used for creating customer segments and triggering marketing campaigns.

Date properties should be sent as UNIX timestamps (UTC), and the keys should end in _at.

Charge

charge page anchor

To track customer revenue in CrowdPower, send the track event with the revenue key present.

1
analytics.track('New Charge', {
2
revenue: 1200,
3
})

Track calls with the revenue key are treated as a charge in CrowdPower and do not appear in the customer's event feed. The revenue is attributed to the customer, and the event name (and any other properties) are ignored.


You can send computed traits and audiences generated using Engage to this destination as a user property. To learn more about Engage, schedule a demo(link takes you to an external page).

For user-property destinations, an identify call is sent to the destination for each user being added and removed. The property name is the snake_cased version of the audience name, with a true/false value to indicate membership. For example, when a user first completes an order in the last 30 days, Engage sends an Identify call with the property order_completed_last_30days: true. When the user no longer satisfies this condition (for example, it's been more than 30 days since their last order), Engage sets that value to false.

When you first create an audience, Engage sends an Identify call for every user in that audience. Later audience syncs only send updates for users whose membership has changed since the last sync.

(information)

Real-time to batch destination sync frequency

Real-time audience syncs to CrowdPower may take six or more hours for the initial sync to complete. Upon completion, a sync frequency of two to three hours is expected.


Segment lets you change these destination settings from the Segment app without having to touch any code.

Property nameTypeRequiredDescription
API Keystring
required

You can find your CrowdPower project’s public key on the settings page for your project.