Manage Segments (Android SDK - Kotlin)
- Andrey Veprikov
Owned by Andrey Veprikov
Adding to a segment
Method Objective
The method allows adding the current user to a segment.
Syntax and parameters
sdk.addToSegment(segmentId, email, phone)
Request parameters
Name | Type | Requirement | Description |
---|---|---|---|
segmentId | string | required | Segment ID. It's available in the PersonaClick account: CRM > Segments. |
string | optionally | The current user's Email. | |
phone | string | optionally | The current user's phone in full international format. A phone number in full international format may begin with a plus sign (+) followed by the country code, city (area) code, and phone number. |
Examples of use
sdk.addToSegment("100500", "john.doe@examplestore.com", "+10000000000")
sdk.addToSegment("100500", "john.doe@examplestore.com", null)
sdk.addToSegment("100500", null, "+10000000000")
sdk.addToSegment("100500", null, null)
Removing from a segment
Method Objective
The method allows excluding the current user from a segment.
Syntax and parameters
sdk.removeFromSegment(segmentId, email, phone)
Request parameters
Name | Type | Requirement | Description |
---|---|---|---|
segmentId | string | required | Segment ID. It's available in the PersonaClick account: CRM > Segments. |
string | optionally | The current user's Email. | |
phone | string | optionally | The current user's phone in full international format. A phone number in full international format may begin with a plus sign (+) followed by the country code, city (area) code, and phone number. |
Examples of use
sdk.removeFromSegment("100500", "john.doe@examplestore.com", "+10000000000")
sdk.removeFromSegment("100500", "john.doe@examplestore.com", null)
sdk.removeFromSegment("100500", null, "+10000000000")
sdk.removeFromSegment("100500", null, null)
Getting the segment list
Method Objective
The method allows getting a list of segments that include the current user.
Syntax and parameters
sdk.getCurrentSegment(callback)
Name | Type | Requirement | Description |
---|---|---|---|
callback | Function | required | The callback function that takes the API response. The API response type is an object. See the example. |
API response
Type | Description |
---|---|
Object array | Object array, each will have the following properties:
|
Example of use
PersonaClick.getCurrentSegment(object : OnApiCallbackListener() { override fun onSuccess(segments: JSONArray) { // segments (type: array of objects) } })
Page Navigation
Related Pages
-
Page:
-
Page:
-
Page:
-
Page:
-
Page:
-
Page:
-
Page:
Copyright 2018-2024 PersonaClick