Launchpad

Launchpad

Send event data to Launchpad

Configuration

OptionDescription
Secret Key
Type: string
Required: True

Launchpad project secret. You can find that in the settings in your Launchpad.pm account.

Data Residency
Type: choice
Required: False

Learn about EU data residency.

Source Name
Type: string
Required: False

This value, if it's not blank, will be sent as segment_source_name to Launchpad for every event/page/screen call.

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": "Launchpad",
"inputs": {
"apiSecret": {
"value": ""
}
},
"enabled": true,
"template_id": "segment-actions-launchpad"
}'