Get Variation Name
After successfully instantiating a VWO class, getVariationName API returns the variation assigned to the specified user if the user qualifies to become part of the specified campaign. This API doesn't activate the campaign i.e. it will not send any impression call to the VWO servers for tracking any data.
Description
The API method:
- Validates the parameters passed.
- Checks whether the user is whitelisted.
- Checks if User Storage Service is provided to know whether the user is returning. If yes, show the previously assigned variation always.
- Checks whether the user is eligible based on the campaign's pre-segmentation conditions.
- Checks whether the user qualifies to become a part of the campaign based on traffic allocation.
- Assigns a deterministic variation to the qualified user.
- Does not send an impression event to the VWO server.
It takes the same parameters and returns the same value as Activate API. The only difference is that this API method does not send a tracking impression to the VWO server. This API method is used to get the variation assigned to the userId.
The behaviour of the two API methods, that is, activate and getVariationName is identical otherwise.
Use Get Variation Name API if Activate API has already been triggered to prevent a user from being tracked again. Also, this API is also helpful in retrieving the variation assignment to a particular User Id, respecting all other factors like segmentation, whitelisting, etc. without sending any impression call to the VWO servers.
Parameter definitions
Parameter | Type | Description |
---|---|---|
campaignKey Required | String | The campaign needs to be identified based on the unique test-key provided at the time of campaign creation. |
userId Required | String | The User ID which uniquely identifies each user. |
options Optional | Object | Pass params for pre-segmentation and whitelisting customVariables(Object): Custom variables to be matched against Campaign's pre-segmentation. variationTargetingVariables(Object): Custom variation targeting variables to be matched against Campaign's forced variation/whitelisting conditions. |
Returns
The name of the variation in which the user is bucketed, or is null if the user does not qualify for a campaign.
Value | Type | Description |
---|---|---|
Variation name | String | When a user qualifies for the campaign, variation name is returned. |
null | Object | When a user is not qualified for a campaign, null is returned. |
Usage
import vwo "github.com/wingify/vwo-go-sdk"
import "github.com/wingify/vwo-go-sdk/pkg/api"
// Get SettingsFile
settingsFile := vwo.GetSettingsFile("accountId", "sdkKey")
// Default instance of VwoInstance
vwoClientInstance, err := vwo.Launch(settingsFile)
// GetVariationName API
options := make(map[string]interface{})
// campaignKey: you provide at the time of campaign creation
// userId: how you identify a particular user
// options: (Optional)
// customVariables: pre-segmentation variables
// variationTargetingVariables: forced variation variables
variationName = vwoClientInstance.GetVariationName(campaignKey, userId, options)
// With Custom Variables
options["customVariables"] = map[string]interface{}{"browser": "Chrome"}
variationName = vwoClientInstance.GetVariationName(campaignKey, userId, options)
if variationName == "Control" {
// Write code for handling 'Control'
} else if variationName == "Variation-1" {
// Write code for handling 'Variation-1'
} else {
// CODE: User is not qualified for the campaign. Would be due to configuring campaign's percent-traffic less than 100% while creating or updating a FullStack campaign.
}
Updated over 1 year ago