Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Adding to a segment

Method Objective

The method allows adding the current user to a segment.

Syntax and parameters

sdk.addToSegment(params)

Request parameters

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

The current user's Phone.

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

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

The current user's Phone.

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()

NameTypeRequirementDescription
callbackFunctionrequiredThe callback function that takes the API response. The API response type is an object.

API response

TypeDescription
Object array

Object array, each will have the following properties:

  • id (number) - the Segment ID.
  • type (string) - the Segment Type. It can have the following values: static, dynamic.

Example of use

let segments = sdk.getCurrentSegment()
  • No labels