Marketo Static Lists

Marketo Static Lists

Send event data to Marketo Static Lists

Configuration

OptionDescription
Client ID
Type: string
Required: True

Your Marketo REST API Client ID.

Client Secret
Type: string
Required: True

Your Marketo REST API Client Secret.

API Endpoint
Type: string
Required: True

Your Marketo REST API Endpoint in this format: https://<your_account_id>.mktorest.com.

Folder Name
Type: string
Required: True

Name of the folder in which to create static lists.

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": "Marketo Static Lists",
"inputs": {
"client_id": {
"value": ""
},
"client_secret": {
"value": ""
},
"api_endpoint": {
"value": ""
},
"folder_name": {
"value": ""
}
},
"enabled": true,
"template_id": "segment-actions-marketo-static-lists"
}'