VWO Cloud Mode

VWO Cloud Mode

Send event data to VWO Cloud Mode

Configuration

OptionDescription
Your VWO account ID
Type: string
Required: True

Enter your VWO Account ID

VWO SDK Key
Type: string
Required: False

VWO Fullstack SDK Key. It is mandatory when using the VWO Fullstack suite.

Region
Type: choice
Required: False

VWO Region to sync data to. Default is US

Debug Mode
Type: boolean
Required: False

Will log configuration and request details

Using our REST API you can create this destination like so:

Terminal
# Create a new destination
curl --location 'https://us.i.posthog.com/api/environments/:project_id/hog_functions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <POSTHOG_PERSONAL_API_KEY>' \
--data '{
"type": "destination",
"name": "VWO Cloud Mode",
"inputs": {
"vwoAccountId": {
"value": ""
}
},
"enabled": true,
"template_id": "segment-actions-vwo-cloud"
}'