Recombee

Recombee

Send event data to Recombee

Configuration

OptionDescription
Database ID
Type: string
Required: True

The ID of the Recombee Database into which the interactions will be sent.

Private Token
Type: string
Required: True

The private token for the Recombee Database used.

Database Region
Type: choice
Required: True

The Recombee cluster where your Database is located. Learn more

API URI
Type: string
Required: False

URI of the Recombee API that should be used. Keep this field empty unless you are calling the Recombee cluster based in a specific region or you were assigned a custom URI by the Recombee Support team.

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": "Recombee",
"inputs": {
"databaseId": {
"value": ""
},
"privateToken": {
"value": ""
},
"databaseRegion": {
"value": ""
}
},
"enabled": true,
"template_id": "segment-actions-recombee"
}'