Kickfire Attributes

On successful integration of the Kickfire, CustomFit displays various Kickfire attributes:

All the Kickfire attributes can be attached to the visitors as query parameters. To write a rule based on Kickfire attributes

  • Click on Add rules

  • Click on the Attribute field

  • In the dropdown, you can see the Kickfire section

If you select String type property then the supported operation types for String type attributes are:

IS_ONE_OF, IS_NOT_ONE_OF

Use this operation type if you want to match each character from start to end. For example, to target the visitors with the country as India. So, the rule will be Country IS_ONE_OF India then, serve them B1 behavior.

For example, to target the visitors apart from the country as India. So, the rule will be Country IS_NOT_ONE_OF India then, serve them B2 behavior.

STARTS_WITH, DOES_NOT_STARTS_WITH

Use this operation to perform the prefix match with the query parameter value. For example, to target the visitors whose trade name starts with CustomFit. So the rule will be TradeName STARTS_WITH CustomFit then, serve them B1 behavior

For example, to target the visitors whose trade name does not starts with CustomFit. So the rule will be TradeName DOES_NOT_STARTS_WITH CustomFit then, serve them B1 behavior

ENDS_WITH, DOES_NOT_ENDS_WITH

Use this operation to perform the suffix match with the query parameter value. For example, to target the visitors whose website ends with ai . So the rule will be Website ENDS_WITH ai then, serve them B1 behavior

For example, to target the visitors whose website does not ends with com. So the rule will be Website DOES_NOT_ENDS_WITH com then, serve them B2 behavior

CONTAINS, DOES_NOT_CONTAINS

Use this operation to perform the substring match with the query parameter value.

For example, to target the visitors whose companyname contains ltd. So the rule will be CompanyName CONTAINS ltd then, serve them B1 behavior

For example, to target the visitors whose companyname does not contains ltd. So the rule will be CompanyName DOES_NOT_CONTAINS ltd then, serve them B2 behavior

IS_SET, IS_NOT_SET

Use this operation to check whether the query parameter value has been set or not. For example, to target the visitors whose sicgroup is known to us. So, the rule will be sicGroup IS_SET then, serve them B1 behavior

For example, to target the visitors whose sicgroup is not known to us. So, the rule will be sicGroup IS_NOT_SET then, serve them B2 behavior

If you select Number type property then the supported operation types for Number type attributes are:

IS_ONE_OF, IS_NOT_ONE_OF

Use this operation type if you want to target the visitors whose confidence value is 75. So, the rule will be CONFIDENCE IS_ONE_OF 75 then, serve them B1 behavior

For example, to target the visitors whose confidence value is not 75. So, the rule will be CONFIDENCE IS_NOT_ONE_OF 75 then, serve them B2 behavior

GREATER_THAN, GREATER_THAN_OR_EQUAL_TO

Use this operation type if you want to target visitors whose dstoffset is greater than 0. So, DSTOFFSET is GREATER_THAN 0 then, serve them B1 behavior

For example, to target visitors whose dstoffset is greater than or equal to 0. So, DSTOFFSET is GREATER_THAN_OR_EQUAL_TO 0 then, serve them B2 behavior

LESS_THAN, LESS_THAN_OR_EQUAL_TO

Use this operation type if you want to target visitors whose dstoffset is less than 1. So, the rule will be DSTOFFSET LESS_THAN 1 then, serve them B1 behavior

For example, to target visitors whose dstoffset is less than or equal to 1. So, the rule will be DSTOFFSET LESS_THAN_OR_EQUAL_TO 1 then, serve them B2 behavior

IS_SET, IS_NOT_SET

Use this operation to check whether the query parameter value has been set or not. For example, to target the visitors whose isISP is known to us. So, the rule will be ISISP IS_SET then, serve them B1 behavior

For example, to target the visitors whose isISP is not known to us. So, the rule will be ISISP IS_NOT_SET then, serve them B2 behavior

Last updated