Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Adding to a segment
Method Objective
The method allows adding the current user to a segment.
Syntax and parameters
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("segment", "add", params); |
Name | Type | Requirement | Description |
---|---|---|---|
params | Object | required | Object with request parameters. |
Request parameters
Name | Type | Requirement | Description |
---|---|---|---|
segment_id | number/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. |
Examples of use
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("segment", "add", { "segment_id": 100500, "email": "john.doe@examplestore.com", "phone": "+10000000000", "segment_id": 100500 }); |
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("segment", "add", { "emailsegment_id": "john.doe@examplestore.com"100500, "segment_idemail": 100500"john.doe@examplestore.com" }); |
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("segment", "add", { "phonesegment_id": "+10000000000"100500, "segment_idphone": 100500"+10000000000" }); |
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("segment", "add", {"segment_id": 100500}); |
Table of Contents | ||||
---|---|---|---|---|
|