Klime

Klime

Send events to Klime

Configuration

OptionDescription
Klime Write Key
Type: string
Required: True

Your Klime write key for authentication. Find it in your Klime dashboard.

Action
Type: choice
Required: True

How to map PostHog events to Klime event types. Automatic converts $identify/$set to identify, $groupidentify to group, and everything else to track.

User ID
Type: string
Required: False

User identifier to send to Klime. Required for identify events.

Group ID
Type: string
Required: False

Organization or account identifier. Required for group events. Defaults to your first PostHog group type ($group_0). If you use multiple group types, change to $group_1, $group_2, etc. You can also use a custom event property.

Include all person properties
Type: boolean
Required: True

If set, all person properties will be included as traits on identify events. May cause timeouts for persons with many properties.

User trait mapping
Type: dictionary
Required: False

Map of trait names to values, sent on identify events. By default sends email and name from person properties.

Property mapping
Type: dictionary
Required: False

Map of property names to values. These are sent as properties (track) or traits (group).

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": "Klime",
"inputs": {
"writeKey": {
"value": ""
},
"action": {
"value": ""
},
"include_all_properties": {
"value": ""
}
},
"enabled": true,
"template_id": "template-klime"
}'

Community questions

Questions about this page? or post a community question.