Booting the PostHog experience
Userlist

Userlist

Send user, company, and event data to Userlist

Configuration

OptionDescription
Push Key
Type: string
Required: True

You can find your Push Key in your Userlist Push settings

User Identifier
Type: string
Required: True

The unique identifier for the user in Userlist.

User Email
Type: string
Required: False

The email address of the user.

Custom User Properties
Type: dictionary
Required: False

Map of custom user properties and their values.

Company Identifier
Type: string
Required: False

The unique identifier for the company in Userlist.

Company Name
Type: string
Required: False

The name of the company.

Custom Company Properties
Type: dictionary
Required: False

Map of custom company properties and their values.

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": "Userlist",
"inputs": {
"push_key": {
"value": ""
},
"user_identifier": {
"value": ""
}
},
"enabled": true,
"template_id": "template-userlist"
}'

Community questions

Questions about this page? or post a community question.

    Loading PostHog...