Integrations
VWO SDKs help you integrate with a number of third-party destinations. SDKs help you integrate with any kind of tool, be it analytics, monitoring, customer data platforms, and messaging, etc. by implementing a very basic and generic hook that is capable of receiving VWO specific properties.
Do I need to install any library to integrate with the destination?
You don't have to install and configure any third-party library for VWO SDKs to send the data to the desired third-party destination. SDKs provide different hooks(one for now), which you can implement, to gather all the helpful information related to the decision-making.
Usage
class Integrations(object):
def __init__(self):
pass
def callback(self, properties):
# properties will contain all the required VWO specific information
print(properties)
vwo_instance = vwo.launch(settings_file, integrations = Integrations())
What's the format for the Integration's object?
All VWO SDKs provide the following properties when a decision is made. This means if you configure the integrations callback at the time of launching the SDK, the callback will be triggered whenever VWO SDK decides which campaign version to show to the user. The callback, if provided, will be called in case of activate, getVariationName, track, isFeatureEnabled, and getFeatureVariableValue APIs.
{
// campaign info
campaign_id: Number,
campaign_name: String,
campaign_key: String, // as passed to API
campaign_type: String,
// campaign segmentation conditions
custom_variables: Object,
// event name
event: 'CAMPAIGN_DECISION',
// goal tracked in case of track API
goal_identifier: String,
// In case of Feature Rollout and Feature Test Campaigns, to know whether the feature is enabled for the user having userId
is_feature_enabled: Boolean,
// campaign whitelisting flag
is_forced_variationEnabled: Boolean,
sdk_ersion: String,
// API name which triggered the event
source: String,
// As passed to API
user_id: String,
// Campaign variation ID which SDK allocates to the user having userId
variation_id: Number,
// Campaign variation Name which SDK allocates to the user having userId
variation_name: String,
// Campaign Whitelisting conditions
variation_targeting_variables: Object,
// VWO generated UUID based on passed UserId and Account ID
vwo_user_id: String,
// When the variation is fetched from user storage service
from_user_storage_service: Boolean,
// Whether he variation is shown because of a user being whitelisted
is_user_whitelisted: Boolean
};
Different destinations have their own format for integrating with them and using their respective methods/APIs. Please check the documentation of the respective third-party destination so that the above properties can be mapped accordingly before using the destination APIs.
This is the reason why VWO SDKs do not provide different libraries to connect with different third-party sources. You can simply refer to the third-party destination's documentation and connect VWO the way you want.
Which all platforms I can integrate with?
Since VWO SDKs are platform agnostic, with the help of the above code snippets, you can integrate with any third-party destination.
Note
Please remember to refer to the third-party destination's official documentation before sending the properties as it is received from the VWO SDK.
Updated over 3 years ago