Manage Segments (iOS SDK)
- 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(params)
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(segmentId: "100500", email: "john.doe@examplestore.com", phone: "+10000000000")
sdk.addToSegment(segmentId: "100500", email: "john.doe@examplestore.com")
sdk.addToSegment(segmentId: "100500", phone: "+10000000000")
sdk.addToSegment(segmentId: "100500")
Removing from a segment
Method Objective
The method allows excluding the current user from a segment.
Syntax and parameters
sdk.removeFromSegment(params)
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(segmentId: "100500", email: "john.doe@examplestore.com", phone: "+10000000000")
sdk.removeFromSegment(segmentId: "100500", email: "john.doe@examplestore.com")
sdk.removeFromSegment(segmentId: "100500", phone: "+10000000000")
sdk.removeFromSegment(segmentId: "100500")
Getting the segment list
Method Objective
The method allows getting a list of segments that include the current user.
Syntax and parameters
sdk.getCurrentSegment()
API response
Type | Description |
---|---|
Object array | Object array, each will have the following properties:
|
Example of use
let segments = sdk.getCurrentSegment()
Page Navigation
Related Pages
-
Page:
-
Page:
-
Page:
-
Page:
-
Page:
-
Page:
-
Page:
Copyright 2018-2024 PersonaClick