Versions Compared

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
languagejs
themeFadeToGrey
personaclick("segment", "add", params);

NameTypeRequirementDescription
paramsObjectrequiredObject with request parameters.

Request parameters

NameTypeRequirementDescription
segment_idnumber/stringrequiredSegment ID. It's available in the PersonaClick account: CRM > Segments.
emailstringoptionallyThe current user's Email.
phonestringoptionally

The current user's Phone.

Examples of use

Code Block
languagejs
themeFadeToGrey
personaclick('"segment'", '"add'", {
    "email": "john.doe@examplestore.com",
    "phone": "+10000000000",
    "segment_id": 100500
});

Code Block
languagejs
themeFadeToGrey
personaclick('"segment'", '"add'", {
    "email": "john.doe@examplestore.com",
    "segment_id": 100500
});

Code Block
languagejs
themeFadeToGrey
personaclick('"segment'", '"add'", {
    "phone": "+10000000000",
    "segment_id": 100500
});

Code Block
languagejs
themeFadeToGrey
personaclick('"segment'", '"add'", {"segment_id": 100500});


Table of Contents
maxLevel2
classpersonaclick-fixed-position