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.

Include all properties
Type: boolean
Required: True

If set, all event properties (for track), person properties (for identify), or group properties (for group) will be included. Individual properties can be overridden below.

Property mapping
Type: dictionary
Required: False

Map of property names to values. These are sent as properties (track) or traits (identify/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.