1. User Segmentation Introduction

Refer to the Identify Users-User Segmentation (Internal Testing) for the full documentation.

2. API Introduction

This section only introduces the API functionality of user segmentation. For other tracking interfaces, please refer to the basic API functionality.

Minimum supported version for ID-Mapping 3.0

Android SDK v6.3.0
iOS SDK v4.3.0

2.1. Multi-User ID Association

Used for associating multiple user IDs. The first parameter is obtained from the detailed preset ID key list, and the second parameter is the corresponding associated user ID.

After calling the interface, the corresponding key and value will be cached locally, and all subsequent events collected will include the cached ID information.

sensors.bind("$identity_mobile","187****8991")
JAVA

2.2. Multi-User ID Disassociation

Used for disassociating multiple user IDs. The first parameter is the key for disassociation, and the second parameter is the corresponding user ID for disassociation.

After calling the interface, the corresponding unbinding events will be sent, and the corresponding key-value will be cleared from the local cached ID information (if exists).

sensors.unbind("$identity_mobile","187****8991")
JAVA